/* $Id$
$State$
$Log$
+ Revision 1.175 2015/01/03 16:33:42 brouard
+ *** empty log message ***
+
Revision 1.174 2015/01/03 16:15:49 brouard
Summary: Still in cross-compilation
/* #include "syscompilerinfo.h"*/
#if defined(__GNUC__)
#include <gnu/libc-version.h> /* Only on gnu */
+struct utsname sysInfo;
#endif
#include <stdint.h>
printf(" wtf-bit"); fprintf(ficlog," wtf-bit");/* wtf */
#endif
-/* struct utsname sysInfo;
-
- if (uname(&sysInfo) != -1) {
- printf(" %s %s %s %s %s\n",sysInfo.sysname, sysInfo.nodename, sysInfo.release, sysInfo.version, sysInfo.machine);
- fprintf(ficlog," %s %s %s %s %s\n ",sysInfo.sysname, sysInfo.nodename, sysInfo.release, sysInfo.version, sysInfo.machine);
- }
- else
- perror("uname() error");
- */
#if defined(__GNUC__)
# if defined(__GNUC_PATCHLEVEL__)
# define __GNUC_VERSION__ (__GNUC__ * 10000 \
# endif
printf(" using GNU C version %d.\n", __GNUC_VERSION__);
fprintf(ficlog, " using GNU C version %d.\n", __GNUC_VERSION__);
+
+ if (uname(&sysInfo) != -1) {
+ printf("Running on: %s %s %s %s %s\n",sysInfo.sysname, sysInfo.nodename, sysInfo.release, sysInfo.version, sysInfo.machine);
+ fprintf(ficlog,"Running on: %s %s %s %s %s\n ",sysInfo.sysname, sysInfo.nodename, sysInfo.release, sysInfo.version, sysInfo.machine);
+ }
+ else
+ perror("uname() error");
printf("GNU libc version: %s\n", gnu_get_libc_version());
fprintf(ficlog,"GNU libc version: %s\n", gnu_get_libc_version());
// {
#if defined(_MSC_VER)
if (IsWow64()){
- printf("The program (probably compile for 32bit) is running under WOW64 (64bit) emulation.\n");
- fprintf(ficlog, "The program (ie 32bit) is running under WOW64 (64bit) emulation.\n");
+ printf("The program (probably compiled for 32bit) is running under WOW64 (64bit) emulation.\n");
+ fprintf(ficlog, "The program (probably compiled for 32bit) is running under WOW64 (64bit) emulation.\n");
}
else{
- printf("The process is not running under WOW64 (i.e probably on a 64bits windows).\n");
- frintf(ficlog,"The programm is not running under WOW64 (i.e probably on a 64bits windows).\n");
+ printf("The process is not running under WOW64 (i.e probably on a 64bit Windows).\n");
+ frintf(ficlog,"The programm is not running under WOW64 (i.e probably on a 64bit Windows).\n");
}
// printf("\nPress Enter to continue...");
// getchar();