Diff for /imach/src/imach.c between versions 1.184 and 1.185

version 1.184, 2015/03/11 11:52:39 version 1.185, 2015/03/11 13:26:42
Line 1 Line 1
 /* $Id$  /* $Id$
   $State$    $State$
   $Log$    $Log$
     Revision 1.185  2015/03/11 13:26:42  brouard
     Summary: Inclusion of compile and links command line for Intel Compiler
   
   Revision 1.184  2015/03/11 11:52:39  brouard    Revision 1.184  2015/03/11 11:52:39  brouard
   Summary: Back from Windows 8. Intel Compiler    Summary: Back from Windows 8. Intel Compiler
   
Line 5646  BOOL IsWow64() Line 5649  BOOL IsWow64()
 void syscompilerinfo()  void syscompilerinfo()
  {   {
    /* #include "syscompilerinfo.h"*/     /* #include "syscompilerinfo.h"*/
         /* command line Intel compiler 64bit windows:     /* command line Intel compiler 32bit windows, XP compatible:*/
         /GS /W3 /Gy /Zc:wchar_t /Zi /O2 /Fd"x64\Release\vc120.pdb" /D "WIN32"      /* /GS /W3 /Gy
         /D "NDEBUG" /D "_CONSOLE" /D "_LIB" /D "_UNICODE" /D "UNICODE" /Qipo         /Zc:wchar_t /Zi /O2 /Fd"Release\vc120.pdb" /D "WIN32" /D "NDEBUG" /D
         /Zc:forScope /Oi /MD /Fa"x64\Release\" /EHsc /nologo         "_CONSOLE" /D "_LIB" /D "_USING_V110_SDK71_" /D "_UNICODE" /D
         /Fo"x64\Release\" /Qprof-dir "x64\Release\" /Fp"x64\Release\IMaCh.pch" */        "UNICODE" /Qipo /Zc:forScope /Gd /Oi /MT /Fa"Release\" /EHsc /nologo
         /*        /Fo"Release\" /Qprof-dir "Release\" /Fp"Release\IMaCh.pch" 
         /GS /W3 /Gy /Zc:wchar_t /Zi /O3 /Fd"x64\Release\vc120.pdb" /D "WIN32"         /* 64 bits */
         /D "NDEBUG" /D "_CONSOLE" /D "_LIB" /D "_UNICODE" /D "UNICODE" /Qipo      /*
         /Zc:forScope /Oi /MD /Fa"x64\Release\" /EHsc /nologo /Qparallel        /GS /W3 /Gy
         /Fo"x64\Release\" /Qprof-dir "x64\Release\" /Fp"x64\Release\IMaCh.pch" */       /Zc:wchar_t /Zi /O2 /Fd"x64\Release\vc120.pdb" /D "WIN32" /D "NDEBUG"
        /D "_CONSOLE" /D "_LIB" /D "_UNICODE" /D "UNICODE" /Qipo /Zc:forScope
        /Oi /MD /Fa"x64\Release\" /EHsc /nologo /Fo"x64\Release\" /Qprof-dir
        "x64\Release\" /Fp"x64\Release\IMaCh.pch" */
      /* Optimization are useless and O3 is slower than O2 */
      /*
        /GS /W3 /Gy /Zc:wchar_t /Zi /O3 /Fd"x64\Release\vc120.pdb" /D "WIN32" 
        /D "NDEBUG" /D "_CONSOLE" /D "_LIB" /D "_UNICODE" /D "UNICODE" /Qipo 
        /Zc:forScope /Oi /MD /Fa"x64\Release\" /EHsc /nologo /Qparallel 
        /Fo"x64\Release\" /Qprof-dir "x64\Release\" /Fp"x64\Release\IMaCh.pch" 
      */
      /* Link is $/ /* /OUT:"visual studio
         2013\Projects\IMaCh\Release\IMaCh.exe" /MANIFEST /NXCOMPAT
         /PDB:"visual studio
         2013\Projects\IMaCh\Release\IMaCh.pdb" /DYNAMICBASE
         "kernel32.lib" "user32.lib" "gdi32.lib" "winspool.lib"
         "comdlg32.lib" "advapi32.lib" "shell32.lib" "ole32.lib"
         "oleaut32.lib" "uuid.lib" "odbc32.lib" "odbccp32.lib"
         /MACHINE:X86 /OPT:REF /SAFESEH /INCREMENTAL:NO
         /SUBSYSTEM:CONSOLE",5.01" /MANIFESTUAC:"level='asInvoker'
         uiAccess='false'"
         /ManifestFile:"Release\IMaCh.exe.intermediate.manifest" /OPT:ICF
         /NOLOGO /TLBID:1
      */
 #if defined __INTEL_COMPILER  #if defined __INTEL_COMPILER
 #if defined(__GNUC__)  #if defined(__GNUC__)
         struct utsname sysInfo;  /* For Intel on Linux and OS/X */          struct utsname sysInfo;  /* For Intel on Linux and OS/X */

Removed from v.1.184  
changed lines
  Added in v.1.185


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