Ignore:
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. */
    32
    43/* Using a.out ABI */
     
    65
    76/* Define path to alternate assembler */
    8 //#undef ASSEMBLER
     7#define ASSEMBLER "/app/as"
    98
    109/* Using Classic 68k ABI */
     
    9594#define HAVE_VSNPRINTF 1
    9695
    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
    99102
    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
    103109
    104110/* lex is flex */
     
    106112
    107113/* Define alternate standard lib directory */
    108 //#undef LIBDIR
     114#define LIBDIR "/lib/"
    109115
    110116/* Define path to alternate linker */
    111 //#undef LINKER
     117#define LINKER "/app/ld"
    112118
    113119/* Using Mach-O ABI */
     
    142148
    143149/* Define path to alternate preprocessor */
    144 //#undef PREPROCESSOR
     150#undef PREPROCESSOR
    145151
    146152/* Define to 1 if you have the ANSI C header files. */
     
    148154
    149155/* Define alternate standard include directory */
    150 //#undef STDINC
     156#define STDINC "/inc/c"
    151157
    152 /* Define if target defaults to BIG endian */
    153 //#undef TARGET_BIG_ENDIAN
    154 
    155 /* Define if target defaults to LITTLE endian */
    156 #define TARGET_LITTLE_ENDIAN
    157 // FIXME: check architecture
    158158
    159159/* Target OS */
     
    164164
    165165/* Enable thread-local storage (TLS). */
    166 // #undef TLS
     166#define TLS 1
    167167
    168168/* Version string */
Note: See TracChangeset for help on using the changeset viewer.