Changes in uspace/app/pcc/config.h [e6910c8:0cf27ee] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/pcc/config.h
re6910c8 r0cf27ee 1 2 // FIXME: find out which of them are actually true 1 /* Hard-coded, because wiring up configure script would just not be worth the effort. */ 3 2 4 3 /* Using a.out ABI */ … … 6 5 7 6 /* Define path to alternate assembler */ 8 //#undef ASSEMBLER 7 #define ASSEMBLER "/app/as" 9 8 10 9 /* Using Classic 68k ABI */ … … 95 94 #define HAVE_VSNPRINTF 1 96 95 97 /* Define if host is BIG endian */ 98 //#undef HOST_BIG_ENDIAN 96 #ifdef __BE__ 97 /* Define if host is BIG endian */ 98 #define HOST_BIG_ENDIAN 99 /* Define if target defaults to BIG endian */ 100 #undef TARGET_BIG_ENDIAN 101 #endif 99 102 100 /* Define if host is LITTLE endian */ 101 #define HOST_LITTLE_ENDIAN 102 // FIXME: check architecture 103 #ifdef __LE__ 104 /* Define if host is LITTLE endian */ 105 #define HOST_LITTLE_ENDIAN 106 /* Define if target defaults to LITTLE endian */ 107 #define TARGET_LITTLE_ENDIAN 108 #endif 103 109 104 110 /* lex is flex */ … … 106 112 107 113 /* Define alternate standard lib directory */ 108 //#undef LIBDIR 114 #define LIBDIR "/lib/" 109 115 110 116 /* Define path to alternate linker */ 111 //#undef LINKER 117 #define LINKER "/app/ld" 112 118 113 119 /* Using Mach-O ABI */ … … 142 148 143 149 /* Define path to alternate preprocessor */ 144 //#undef PREPROCESSOR150 #undef PREPROCESSOR 145 151 146 152 /* Define to 1 if you have the ANSI C header files. */ … … 148 154 149 155 /* Define alternate standard include directory */ 150 //#undef STDINC 156 #define STDINC "/inc/c" 151 157 152 /* Define if target defaults to BIG endian */153 //#undef TARGET_BIG_ENDIAN154 155 /* Define if target defaults to LITTLE endian */156 #define TARGET_LITTLE_ENDIAN157 // FIXME: check architecture158 158 159 159 /* Target OS */ … … 164 164 165 165 /* Enable thread-local storage (TLS). */ 166 // #undef TLS 166 #define TLS 1 167 167 168 168 /* Version string */
Note:
See TracChangeset
for help on using the changeset viewer.