/* $Id$
$State$
$Log$
+ Revision 1.178 2015/01/04 09:35:48 brouard
+ *** empty log message ***
+
Revision 1.177 2015/01/03 18:40:56 brouard
Summary: Still testing ilc32 on OSX
struct utsname sysInfo; /* For Intel on Linux and OS/X */
#endif
#elif defined(__GNUC__)
+#ifndef __APPLE__
#include <gnu/libc-version.h> /* Only on gnu */
+#endif
struct utsname sysInfo;
int cross = CROSS;
if (cross){
}
else
perror("uname() error");
-#ifndef __INTEL_COMPILER
+ //#ifndef __INTEL_COMPILER
+#if !defined (__INTEL_COMPILER) && !defined(__APPLE__)
printf("GNU libc version: %s\n", gnu_get_libc_version());
- fprintf(ficlog,"GNU libc version: %s\n", gnu_get_libc_version());
+ fprintf(ficlog,"GNU libc version: %s\n", gnu_get_libc_version());
#endif
#endif