Note: This website is archived. For up-to-date information about D projects and development, please visit wiki.dlang.org.

Changeset 593

Show
Ignore:
Timestamp:
08/02/10 23:55:41 (14 years ago)
Author:
walter
Message:

detab

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/dmd-1.x/src/backend/cdef.h

    r577 r593  
    120120 */ 
    121121 
    122122/* Solaris Version 
    123123 * ------------- 
    124124 * There are two main issues: hosting the compiler on Solaris, 
    125125 * and generating (targetting) Solaris executables. 
    126126 * The "__sun", "__SVR4" and "__GNUC__" macros control hosting issues 
    127127 * for operating system and compiler dependencies, respectively. 
    128128 * To target Solaris executables, use ELFOBJ for things specific to the 
    129129 * ELF object file format, and TARGET_SOLARIS for things specific to 
    130130 * the Solaris memory model. 
    131131 * If this is all done right, one could generate a Solaris object file 
    132132 * even when compiling on win32, and vice versa. 
    133133 * The compiler source code currently uses these macros very inconsistently 
    134134 * with these goals, and should be fixed. 
    135135 */ 
    136136 
    137137#ifndef CDEF_H 
    138138#define CDEF_H  1 
    139139 
    140 #define VERSION "8.52.5"        // for banner and imbedding in .OBJ file 
    141 #define VERSIONHEX "0x852"      // for __DMC__ macro 
    142 #define VERSIONINT 0x852        // for precompiled headers and DLL version 
     140#define VERSION "8.53.0"        // for banner and imbedding in .OBJ file 
     141#define VERSIONHEX "0x853"      // for __DMC__ macro 
     142#define VERSIONINT 0x853        // for precompiled headers and DLL version 
    143143 
    144144 
    145145/*********************************** 
    146146 * Target machine types: 
    147147 */ 
    148148 
    149149#define TX86            1               // target is Intel 80X86 processor 
    150150#define TARGET_68K      0               // target is a 68K processor 
    151151#define TARGET_POWERPC  0               // target is a PPC processor 
    152152#define TARGET_MAC      0               // target is a macintosh 
    153153 
    154154// Set to 1 using the makefile 
    155155#ifndef TARGET_LINUX 
    156156#define TARGET_LINUX    0               // target is a linux executable 
    157157#endif 
    158158 
    159159// Set to 1 using the makefile 
    160160#ifndef TARGET_OSX 
    161161#define TARGET_OSX      0               // target is an OSX executable 
    162162#endif 
  • trunk/src/backend/cdef.h

    r577 r593  
    120120 */ 
    121121 
    122122/* Solaris Version 
    123123 * ------------- 
    124124 * There are two main issues: hosting the compiler on Solaris, 
    125125 * and generating (targetting) Solaris executables. 
    126126 * The "__sun", "__SVR4" and "__GNUC__" macros control hosting issues 
    127127 * for operating system and compiler dependencies, respectively. 
    128128 * To target Solaris executables, use ELFOBJ for things specific to the 
    129129 * ELF object file format, and TARGET_SOLARIS for things specific to 
    130130 * the Solaris memory model. 
    131131 * If this is all done right, one could generate a Solaris object file 
    132132 * even when compiling on win32, and vice versa. 
    133133 * The compiler source code currently uses these macros very inconsistently 
    134134 * with these goals, and should be fixed. 
    135135 */ 
    136136 
    137137#ifndef CDEF_H 
    138138#define CDEF_H  1 
    139139 
    140 #define VERSION "8.52.5"        // for banner and imbedding in .OBJ file 
    141 #define VERSIONHEX "0x852"      // for __DMC__ macro 
    142 #define VERSIONINT 0x852        // for precompiled headers and DLL version 
     140#define VERSION "8.53.0"        // for banner and imbedding in .OBJ file 
     141#define VERSIONHEX "0x853"      // for __DMC__ macro 
     142#define VERSIONINT 0x853        // for precompiled headers and DLL version 
    143143 
    144144 
    145145/*********************************** 
    146146 * Target machine types: 
    147147 */ 
    148148 
    149149#define TX86            1               // target is Intel 80X86 processor 
    150150#define TARGET_68K      0               // target is a 68K processor 
    151151#define TARGET_POWERPC  0               // target is a PPC processor 
    152152#define TARGET_MAC      0               // target is a macintosh 
    153153 
    154154// Set to 1 using the makefile 
    155155#ifndef TARGET_LINUX 
    156156#define TARGET_LINUX    0               // target is a linux executable 
    157157#endif 
    158158 
    159159// Set to 1 using the makefile 
    160160#ifndef TARGET_OSX 
    161161#define TARGET_OSX      0               // target is an OSX executable 
    162162#endif