mirror of
https://github.com/Shpoike/Quakespasm.git
synced 2024-11-10 07:21:58 +00:00
6ca3fc377b
the linker flags for x86_64 builds. adjusted accordingly. - build_cross_osx.sh, build_cross_win32.sh, build_cross_win64.sh: added the cross-compile scripts I have been using. - Makefiles,other: added LDFLAGS variables for future use. git-svn-id: svn://svn.code.sf.net/p/quakespasm/code/trunk/quakespasm@704 af15c1b1-3010-417e-b628-4374ebc0bcbd
57 lines
1.4 KiB
Bash
Executable file
57 lines
1.4 KiB
Bash
Executable file
#!/bin/sh
|
|
|
|
rm -f quakespasm.ppc \
|
|
quakespasm.x86 \
|
|
quakespasm.x86_64 \
|
|
QuakeSpasm
|
|
make clean
|
|
|
|
OLDPATH=$PATH
|
|
MAKE_CMD=make
|
|
|
|
OSXBUILD=1
|
|
export OSXBUILD
|
|
STRIP=/bin/true
|
|
export STRIP
|
|
|
|
# ppc
|
|
PATH=/opt/cross_osx-ppc/bin:$OLDPATH
|
|
CC=powerpc-apple-darwin9-gcc
|
|
AS=powerpc-apple-darwin9-as
|
|
AR=powerpc-apple-darwin9-ar
|
|
RANLIB=powerpc-apple-darwin9-ranlib
|
|
LIPO=powerpc-apple-darwin9-lipo
|
|
export PATH CC AS AR RANLIB LIPO
|
|
$MAKE_CMD MACH_TYPE=ppc -f Makefile.darwin $* || exit 1
|
|
powerpc-apple-darwin9-strip -S quakespasm || exit 1
|
|
mv quakespasm quakespasm.ppc || exit 1
|
|
$MAKE_CMD clean
|
|
|
|
# x86
|
|
PATH=/opt/cross_osx-x86/bin:$OLDPATH
|
|
CC=i686-apple-darwin9-gcc
|
|
AS=i686-apple-darwin9-as
|
|
AR=i686-apple-darwin9-ar
|
|
RANLIB=i686-apple-darwin9-ranlib
|
|
LIPO=i686-apple-darwin9-lipo
|
|
export PATH CC AS AR RANLIB LIPO
|
|
$MAKE_CMD MACH_TYPE=x86 -f Makefile.darwin $* || exit 1
|
|
i686-apple-darwin9-strip -S quakespasm || exit 1
|
|
mv quakespasm quakespasm.x86 || exit 1
|
|
$MAKE_CMD clean
|
|
|
|
# x86_64
|
|
PATH=/opt/cross_osx-x86_64/usr/bin:$OLDPATH
|
|
CC=x86_64-apple-darwin9-gcc
|
|
AS=x86_64-apple-darwin9-as
|
|
AR=x86_64-apple-darwin9-ar
|
|
RANLIB=x86_64-apple-darwin9-ranlib
|
|
LIPO=x86_64-apple-darwin9-lipo
|
|
export PATH CC AS AR RANLIB LIPO
|
|
$MAKE_CMD MACH_TYPE=x86_64 -f Makefile.darwin $* || exit 1
|
|
x86_64-apple-darwin9-strip -S quakespasm || exit 1
|
|
mv quakespasm quakespasm.x86_64 || exit 1
|
|
$MAKE_CMD clean
|
|
|
|
$LIPO -create -o QuakeSpasm quakespasm.ppc quakespasm.x86 quakespasm.x86_64 || exit 1
|
|
|