]> henry.ined.fr Git - .git/commitdiff
*** empty log message ***
authorN. Brouard <brouard@ined.fr>
Sun, 4 Jan 2015 09:35:48 +0000 (09:35 +0000)
committerN. Brouard <brouard@ined.fr>
Sun, 4 Jan 2015 09:35:48 +0000 (09:35 +0000)
src/Makefile
src/imach.c

index 1e24d6c51f6894ad783b93c296d4755af2fef521..41ad1b85d09fb338475e2d21b6f1eab91cb84abb 100644 (file)
@@ -297,7 +297,7 @@ imachILC64-noreg-setup: IMaCh-ilc64.exe noreg-setup.iss
        $(SETUPCOMP) /cc $(TMPNOREGSETUPSCRIPT)
        $(CP) Output/$(TMPSETUPEXE) imachILC64-noreg-setup
 
-imachILC32-setup: IMaCh-ilc32.exe setup.iss
+imachILC32-setup: IMaCh-ilc32-XP.exe setup.iss
        touch setup.iss.in
        $(CP) IMaCh-ilc32.exe imach.exe
        $(SETUPCOMP) /cc setup.iss
index 2919906c16c95b32d62df641a4ac09aaaa491877..39134e3d4ffecd467f385d2e1275a4beb3279bf3 100644 (file)
@@ -1,6 +1,9 @@
 /* $Id$
   $State$
   $Log$
+  Revision 1.177  2015/01/03 18:40:56  brouard
+  Summary: Still testing ilc32 on OSX
+
   Revision 1.176  2015/01/03 16:45:04  brouard
   *** empty log message ***
 
@@ -5510,18 +5513,21 @@ void syscompilerinfo()
    /* #include "syscompilerinfo.h"*/
 
 #if defined __INTEL_COMPILER
-   struct utsname sysInfo;
+#if defined(__GNUC__)
+       struct utsname sysInfo;  /* For Intel on Linux and OS/X */
+#endif
 #elif defined(__GNUC__) 
 #include <gnu/libc-version.h>  /* Only on gnu */
    struct utsname sysInfo;
-#endif
-
-#include <stdint.h>
    int cross = CROSS;
    if (cross){
-     printf("Cross-");
-     fprintf(ficlog,"Cross-");
+          printf("Cross-");
+          fprintf(ficlog, "Cross-");
    }
+#endif
+
+#include <stdint.h>
+
    printf("Compiled with:");fprintf(ficlog,"Compiled with:");
 #if defined(__clang__)
    printf(" Clang/LLVM");fprintf(ficlog," Clang/LLVM");        /* Clang/LLVM. ---------------------------------------------- */
@@ -5615,7 +5621,7 @@ void syscompilerinfo()
    }
    else{
           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...");
    //     getchar();