This is the mail archive of the java@gcc.gnu.org mailing list for the Java project.
| Index Nav: | [Date Index] [Subject Index] [Author Index] [Thread Index] | |
|---|---|---|
| Message Nav: | [Date Prev] [Date Next] | [Thread Prev] [Thread Next] |
| Other format: | [Raw text] | |
The first one is win32 specific. Have a look at this code in win32.cc:I can see not wanting to have gcj dependent on mingwthr.dll. But couldnt this line be re-written like:
// The following definitions "fake out" mingw to think that -mthreads // was enabled and that mingwthr.dll was linked. GCJ-compiled // applications don't need this helper library because we can safely // detect thread death (return from Thread.run()).
int _CRT_MT = 1;
#ifndef _CRT_MT #define _CRT_MT 1 #endif
| Index Nav: | [Date Index] [Subject Index] [Author Index] [Thread Index] | |
|---|---|---|
| Message Nav: | [Date Prev] [Date Next] | [Thread Prev] [Thread Next] |