Diff for /imach/src/imach.c between versions 1.177 and 1.178

version 1.177, 2015/01/03 18:40:56 version 1.178, 2015/01/04 09:35:48
Line 1 Line 1
 /* $Id$  /* $Id$
   $State$    $State$
   $Log$    $Log$
     Revision 1.178  2015/01/04 09:35:48  brouard
     *** empty log message ***
   
   Revision 1.177  2015/01/03 18:40:56  brouard    Revision 1.177  2015/01/03 18:40:56  brouard
   Summary: Still testing ilc32 on OSX    Summary: Still testing ilc32 on OSX
   
Line 5513  void syscompilerinfo() Line 5516  void syscompilerinfo()
    /* #include "syscompilerinfo.h"*/     /* #include "syscompilerinfo.h"*/
   
 #if defined __INTEL_COMPILER  #if defined __INTEL_COMPILER
    struct utsname sysInfo;  #if defined(__GNUC__)
           struct utsname sysInfo;  /* For Intel on Linux and OS/X */
   #endif
 #elif defined(__GNUC__)   #elif defined(__GNUC__) 
 #include <gnu/libc-version.h>  /* Only on gnu */  #include <gnu/libc-version.h>  /* Only on gnu */
    struct utsname sysInfo;     struct utsname sysInfo;
 #endif  
   
 #include <stdint.h>  
    int cross = CROSS;     int cross = CROSS;
    if (cross){     if (cross){
      printf("Cross-");             printf("Cross-");
      fprintf(ficlog,"Cross-");             fprintf(ficlog, "Cross-");
    }     }
   #endif
   
   #include <stdint.h>
   
    printf("Compiled with:");fprintf(ficlog,"Compiled with:");     printf("Compiled with:");fprintf(ficlog,"Compiled with:");
 #if defined(__clang__)  #if defined(__clang__)
    printf(" Clang/LLVM");fprintf(ficlog," Clang/LLVM"); /* Clang/LLVM. ---------------------------------------------- */     printf(" Clang/LLVM");fprintf(ficlog," Clang/LLVM"); /* Clang/LLVM. ---------------------------------------------- */
Line 5618  void syscompilerinfo() Line 5624  void syscompilerinfo()
    }     }
    else{     else{
            printf("The process is not running under WOW64 (i.e probably on a 64bit 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");             fprintf(ficlog,"The programm is not running under WOW64 (i.e probably on a 64bit Windows).\n");
    }     }
    //      printf("\nPress Enter to continue...");     //      printf("\nPress Enter to continue...");
    //      getchar();     //      getchar();

Removed from v.1.177  
changed lines
  Added in v.1.178


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>