From: Bernd S. <ber...@in...> - 2007-11-01 14:51:36
|
Hi everybody, some details for the next release: - Can we add __MINGW32__ to the ge_eiffel.h headerfile to point at the windows architecture (and then to the pregenerated files) ? I have just tried to compile GOBO under Windows using MinGW and everything seemed to work fine except for this detail: #if !defined(WIN32) && \ (defined(WINVER) || defined(_WIN32_WINNT) || defined(_WIN32) || \ defined(__WIN32__) || defined(__TOS_WIN__) || defined(_MSC_VER)) || \ defined(__MINGW32__) - The help text of the .bat file under windows prints ugly " marks. This can be avoided by removing the quotes from the echo statements, and instead escaping <, > and | by ^, like this: echo usage: bootstrap.bat [-v][--delivery] ^<c_compiler^> ^<eiffel_compiler^> echo c_compiler: msc ^| lcc-win32 ^| bcc ^| gcc ^| cc ^| icc ^| tcc ^| no_c echo eiffel_compiler: ge ^| ise ^| se - I think that the install.[sh|bat] scripts need updating. It still tries to compile 'gec.c' instead of the multiple parts. I will continue looking, Bernd |