On May 12, 2003 02:31 pm, Alexandre Julliard wrote:
You can't pass it along since standard gcc doesn't have that flag.
Thanks, it wasn't immediately evident from the documentation.
ChangeLog Ignore -mthreads, it's not needed in Unix.
Index: tools/winegcc.c =================================================================== RCS file: /var/cvs/wine/tools/winegcc.c,v retrieving revision 1.15 diff -u -r1.15 winegcc.c --- tools/winegcc.c 2 Apr 2003 22:36:29 -0000 1.15 +++ tools/winegcc.c 12 May 2003 22:13:59 -0000 @@ -310,6 +310,8 @@ ; /* ignore this option */ else if (strcmp("-mwindows", argv[j]) == 0) ; /* ignore this option */ + else if (strcmp("-mthreads", argv[j]) == 0) + ; /* ignore this option */ else if (strncmp("-Wl,", argv[j], 4) == 0) ; /* do not pass linking options to compiler */ else if (strcmp("-s", argv[j]) == 0)