diff options
author | John van Groningen | 2013-10-18 13:40:13 +0000 |
---|---|---|
committer | John van Groningen | 2013-10-18 13:40:13 +0000 |
commit | b44ed53b264d435f6c83ee524c7f3780d4819682 (patch) | |
tree | 217a916374712272adaf5d4a56126ac32b69d8bc /macho64 | |
parent | create static libraries (using libtool), instead of object files (using ld), (diff) |
use gcc instead of cc (llvm)
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 |