Changeset 3131 in Sophya for trunk/SophyaLib/BaseTools
- Timestamp:
- Jan 12, 2007, 2:23:28 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaLib/BaseTools/machdefs_mkmf.h
r3070 r3131 52 52 #elif defined(powerpc) 53 53 #define MACH_POWERPC 54 #elif defined(__i386__) 55 #define MACH_INTEL 56 #else 57 #error Undefined Platform (machine) type with linux in machdefs.h 54 /* ---------------------- 55 $CHECK$ (Reza Jan07) : __i386__ pas defini sur AMD 56 Il faut affiner ce test, si on veut etre sur 57 qu'on ait sur un processeur compatible Intel ( / AMD ) 58 #elif defined(__i386__) 59 #define MACH_INTEL 60 #else 61 #error Undefined Platform (machine) type with linux in machdefs.h 62 -------------------------- */ 58 63 #endif 59 64 #define OS_LINUX … … 298 303 #endif 299 304 300 #ifdef __GNU G__301 #define GCC_VERSION (__GNUC__ * 1000 0\305 #ifdef __GNUC__ 306 #define GCC_VERSION (__GNUC__ * 1000 \ 302 307 + __GNUC_MINOR__ * 100 \ 303 308 + __GNUC_PATCHLEVEL__) … … 312 317 #define HAS_IOS_BIN 313 318 #define HAS_IOS_NOCREATE 314 #if ( GCC_VERSION >= 3000 0)319 #if ( GCC_VERSION >= 3000 ) 315 320 #undef DECL_TEMP_SPEC 316 321 #define DECL_TEMP_SPEC template <> 317 322 #endif 318 #if ( GCC_VERSION >= 3400 0)323 #if ( GCC_VERSION >= 3400 ) 319 324 /* Two level name look-up scheme for templates introduced from gcc 3.4 */ 320 325 #define TSNMLUPG4
Note:
See TracChangeset
for help on using the changeset viewer.