diff options
Diffstat (limited to 'macho64')
-rwxr-xr-x | macho64/make.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/macho64/make.sh b/macho64/make.sh index 193bc5c..5be7137 100755 --- a/macho64/make.sh +++ b/macho64/make.sh @@ -1,7 +1,7 @@ as startup.s -o startup.o as startupTrace.s -o startupTrace.o -(cd ..; cc -c -O -DI486 -DMACH_O64 scon.c) -(cd ..; cc -c -O -DUSE_CLIB -DLINUX -DI486 -DGNU_C -DMACH_O64 -o macho64/ufileIO2.o ./ufileIO2.c) +(cd ..; gcc -c -O -DI486 -DMACH_O64 scon.c) +(cd ..; gcc -c -O -DUSE_CLIB -DLINUX -DI486 -DGNU_C -DMACH_O64 -o macho64/ufileIO2.o ./ufileIO2.c) as afileIO3.s -o afileIO3.o # Because of a bug in ld, the following does not work anymore (MacOSX 10.7 and 10.8) # ld -r startup.o ../scon.o afileIO3.o ufileIO2.o -o _startup.o |