apposed / jaunch

Launch Programs 𝙔𝙤𝙪𝙧 Way! 🍔
The Unlicense
6 stars 2 forks source link

MinGW64 breakage #27

Closed ctrueden closed 4 weeks ago

ctrueden commented 4 months ago

The ImageJ Launcher has the following logic:

#if defined(WIN64)
/* work around MinGW64 breakage */
argc = __argc;
argv = __argv;
argv[0] = _pgmptr;
#endif

Is this still relevant? What does it do?

ctrueden commented 4 weeks ago

MinGW64 on Windows seems to be working fine. I'm not going to worry about this.