From: mquinson Date: Thu, 8 Mar 2007 21:54:44 +0000 (+0000) Subject: Allow to cross-compile with gcc again X-Git-Tag: v3.3~2145 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/a84a50d509ea865635d1a3f48e89037f523fa822?hp=079fc72766f21657cb49d9a183f0e35c0223e0f1 Allow to cross-compile with gcc again git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@3214 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- diff --git a/src/win32/config.h b/src/win32/config.h index eddc4789e3..bf54072624 100644 --- a/src/win32/config.h +++ b/src/win32/config.h @@ -17,7 +17,9 @@ #if defined(_XBT_BORLAND_COMPILER) # include -# else +#elif defined(__GNUC__) + /* data comes from autoconf when using gnuc (cross-compiling?) */ +#else # error "Unknown compiler - please report the problems to the main simgrid mailing list (http://gforge.inria.fr/mail/?group_id=12)" #endif @@ -74,4 +76,4 @@ const char *gras_wsa_err2string(int errcode); -#endif /* #ifndef __XBT_WIN32_CONFIG_H__ */ \ No newline at end of file +#endif /* #ifndef __XBT_WIN32_CONFIG_H__ */