Changeset e898296d in mainline
- Timestamp:
- 2011-08-11T00:16:53Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 3e01316f
- Parents:
- 814717fa
- Location:
- uspace/app/pcc
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/pcc/cc/cc/cc.c
r814717fa re898296d 1150 1150 } 1151 1151 } 1152 #ifdef __helenos__ 1153 av[j++] = "-T"; 1154 av[j++] = "/inc/_link.ld"; 1155 #endif 1156 1152 1157 av[j++] = 0; 1153 1158 eflag |= callsys(ld, av); -
uspace/app/pcc/cc/ccom/main.c
r814717fa re898296d 314 314 315 315 mkdope(); 316 #ifndef __helenos__ 316 317 signal(SIGSEGV, segvcatch); 318 #endif 317 319 #ifdef SIGBUS 318 320 signal(SIGBUS, segvcatch); -
uspace/app/pcc/config.h
r814717fa re898296d 6 6 7 7 /* Define path to alternate assembler */ 8 //#undef ASSEMBLER 8 #define ASSEMBLER "/app/as" 9 9 10 10 /* Using Classic 68k ABI */ … … 148 148 149 149 /* Define alternate standard include directory */ 150 #define STDINC "/inc/ "150 #define STDINC "/inc/c" 151 151 152 152 /* Define if target defaults to BIG endian */ -
uspace/app/pcc/os/helenos/ccconfig.h
r814717fa re898296d 35 35 #define CPPADD { "-D__helenos__", "-D__ELF__", NULL, } 36 36 37 # define CRT0FILE ""38 # define CRT0FILE_PROFILE ""37 #undef CRT0FILE 38 #undef CRT0FILE_PROFILE 39 39 40 #define LIBCLIBS { NULL }40 #define LIBCLIBS { "/lib/libc.a", "/lib/libsoftfloat.a", "/lib/libsoftint.a", NULL } 41 41 #define LIBCLIBS_PROFILE LIBCLIBS 42 42 … … 47 47 #define ENDFILES_S { NULL } 48 48 49 #define STARTLABEL "_ start"49 #define STARTLABEL "__entry" 50 50 51 51 #if defined(mach_ia32) … … 74 74 75 75 #ifndef STDINC 76 #define STDINC "/inc lude/"76 #define STDINC "/inc/c/" 77 77 #endif 78 78
Note:
See TracChangeset
for help on using the changeset viewer.