Difference between revisions of "Win32CompileMSYSTroubleShooting"

From VideoLAN Wiki
Jump to navigation Jump to search
(init)
Line 1: Line 1:
This is a list of various errors that have occurred "over the years" during building VLC, with their resolutions.  Of course, if it's not here, google is your friend.
+
This is a list of various errors that have occurred "over the years" during [[Win32CompileMSYSNew|building VLC with windows]], with their resolutions.  Of course, if it's not here, google is your friend.
  
  

Revision as of 22:52, 22 September 2010

This is a list of various errors that have occurred "over the years" during building VLC with windows, with their resolutions. Of course, if it's not here, google is your friend.


  • It doesn't link, and complains about missing gcc symbols: You missed this line in the instructions:

Use text editor to change MinGW\lib\gcc\mingw32\4.4.0\libstdc++.la file (line should be library_names=) due to bug in latest MinGW.

  • Compilation stops early, after configure was complaining about mismatched quotes:

Check the VLC_COMPILE_HOST variable in your config.h - if it's Option f is not valid then hostname -f fails (on Windows, there is no such option as -f). In configure.ac change

AC_DEFINE_UNQUOTED(VLC_COMPILE_HOST, "`hostname -f 2> /dev/null || hostname`", [host which ran configure])

to

AC_DEFINE_UNQUOTED(VLC_COMPILE_HOST, "`hostname`", [host which ran configure])
PATH=/c/Program\ Files/NSIS/:$PATH make package-win32