mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 07:11:41 +00:00
Make all the cross-compiling scripts consistent.
Now all cross builds automatically build qfcc and pak, bail on error, and use pkg-config correctly.
This commit is contained in:
parent
042cae29b1
commit
6857fe55ce
7 changed files with 56 additions and 16 deletions
|
@ -9,7 +9,8 @@ if test -d native; then
|
|||
fi
|
||||
export ANDROID_NDK_ROOT=/opt/android-ndk-r7
|
||||
export ANDROID_SYSROOT=$ANDROID_NDK_ROOT/android-14-toolchain/sysroot
|
||||
export PKG_CONFIG_LIBDIR=$ANDROID_SYSROOT/lib/pkgconfig
|
||||
export PKG_CONFIG_PATH=$ANDROID_SYSROOT/usr/local/lib/pkgconfig
|
||||
export PATH=$ANDROID_NDK_ROOT/android-14-toolchain/bin:$PATH
|
||||
|
||||
make PAK='$(top_builddir)/pak' QFCC='$(top_builddir)/qfcc' $*
|
||||
|
||||
|
|
|
@ -1,7 +1,19 @@
|
|||
#!/bin/sh -x
|
||||
MINGW=/home/bill/src/mingw/mingw-cross-env-2.18
|
||||
export PKG_CONFIG_LIBDIR=$MINGW/usr/lib/pkgconfig
|
||||
set -e
|
||||
mkdir -p native i686-pc-mingw32
|
||||
cd native
|
||||
../../configure \
|
||||
--disable-shared \
|
||||
--without-clients \
|
||||
--without-servers \
|
||||
--with-tools=qfcc,pak
|
||||
cd ../i686-pc-mingw32
|
||||
export MINGW=/home/bill/src/mingw/mingw-cross-env-2.18
|
||||
export MINGW_USR=$MINGW/usr/i686-pc-mingw32
|
||||
export PKG_CONFIG_LIBDIR=$MINGW_USR/lib/pkgconfig
|
||||
export PKG_CONFIG_PATH=$MINGW_USR/local/lib/pkgconfig
|
||||
export PATH=$MINGW/usr/bin:$PATH
|
||||
../configure --host=i686-pc-mingw32 \
|
||||
SDL_CONFIG=$MINGW/usr/i686-pc-mingw32/bin/sdl-config \
|
||||
../../configure \
|
||||
--host=i686-pc-mingw32 \
|
||||
--disable-shared \
|
||||
$*
|
||||
|
|
|
@ -1,6 +1,16 @@
|
|||
#!/bin/sh -x
|
||||
MINGW=/home/bill/src/mingw/mingw-cross-env-2.18
|
||||
export PKG_CONFIG_LIBDIR=$MINGW/usr/lib/pkgconfig
|
||||
set -e
|
||||
if test -d native; then
|
||||
cd native
|
||||
make $*
|
||||
cd ../i686-pc-mingw32
|
||||
ln -fs ../native/tools/qfcc/source/qfcc .
|
||||
ln -fs ../native/tools/pak/pak .
|
||||
fi
|
||||
export MINGW=/home/bill/src/mingw/mingw-cross-env-2.18
|
||||
export MINGW_USR=$MINGW/usr/i686-pc-mingw32
|
||||
export PKG_CONFIG_LIBDIR=$MINGW_USR/lib/pkgconfig
|
||||
export PKG_CONFIG_PATH=$MINGW_USR/local/lib/pkgconfig
|
||||
export PATH=$MINGW/usr/bin:$PATH
|
||||
|
||||
make PAK=pak QFCC=qfcc $*
|
||||
make PAK='$(top_builddir)/pak' QFCC='$(top_builddir)/qfcc' $*
|
||||
|
|
|
@ -1,13 +1,21 @@
|
|||
#!/bin/sh -x
|
||||
mkdir native mipsel-linux
|
||||
set -e
|
||||
mkdir -p native mipsel-linux
|
||||
cd native
|
||||
../../configure --without-clients --without-servers --with-tools=qfcc,pak
|
||||
../../configure \
|
||||
--disable-shared \
|
||||
--without-clients \
|
||||
--without-servers \
|
||||
--with-tools=qfcc,pak
|
||||
cd ../mipsel-linux
|
||||
export MIPSEL=/opt/gcw0-toolchain
|
||||
export PKG_CONFIG_LIBDIR=$MIPSEL/usr/mipsel-gcw0-linux-uclibc/sysroot/lib/pkgconfig
|
||||
export MIPSEL_SYSROOT=$MIPSEL/usr/mipsel-gcw0-linux-uclibc/sysroot
|
||||
export PKG_CONFIG_LIBDIR=$MIPSEL_SYSROOT/lib/pkgconfig
|
||||
export PKG_CONFIG_PATH=$MIPSEL_SYSROOT/usr/local/lib/pkgconfig
|
||||
export PATH=$MIPSEL/usr/bin:$PATH
|
||||
../../configure --host=mipsel-linux \
|
||||
--with-sysroot=$MIPSEL_SYSROOT \
|
||||
--disable-sdl-cd \
|
||||
--with-endian=little \
|
||||
SDL_CONFIG=$MIPSEL/usr/mipsel-gcw0-linux-uclibc/sysroot/usr/bin/sdl-config \
|
||||
SDL_CONFIG=$MIPSEL_SYSROOT/usr/bin/sdl-config \
|
||||
$*
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
#!/bin/sh -x
|
||||
set -e
|
||||
if test -d native; then
|
||||
cd native
|
||||
make
|
||||
|
@ -7,7 +8,9 @@ if test -d native; then
|
|||
ln -fs ../native/tools/pak/pak .
|
||||
fi
|
||||
export MIPSEL=/opt/gcw0-toolchain
|
||||
export PKG_CONFIG_LIBDIR=$MIPSEL/usr/mipsel-gcw0-linux-uclibc/sysroot/lib/pkgconfig
|
||||
export MIPSEL_SYSROOT=$MIPSEL/usr/mipsel-gcw0-linux-uclibc/sysroot
|
||||
export PKG_CONFIG_LIBDIR=$MIPSEL_SYSROOT/lib/pkgconfig
|
||||
export PKG_CONFIG_PATH=$MIPSEL_SYSROOT/usr/local/lib/pkgconfig
|
||||
export PATH=$MIPSEL/usr/bin:$PATH
|
||||
|
||||
make PAK='$(top_builddir)/pak' QFCC='$(top_builddir)/qfcc' $*
|
||||
|
|
|
@ -1,7 +1,12 @@
|
|||
#!/bin/sh -x
|
||||
mkdir native powerpc64-ps3-elf
|
||||
set -e
|
||||
mkdir -p native powerpc64-ps3-elf
|
||||
cd native
|
||||
../../configure --without-clients --without-servers --with-tools=qfcc,pak
|
||||
../../configure \
|
||||
--disable-shared \
|
||||
--without-clients \
|
||||
--without-servers \
|
||||
--with-tools=qfcc,pak
|
||||
cd ../powerpc64-ps3-elf
|
||||
export PS3DEV=/usr/local/ps3dev
|
||||
export PSL1GHT=$PS3DEV
|
||||
|
|
|
@ -1,7 +1,8 @@
|
|||
#!/bin/sh -x
|
||||
set -e
|
||||
if test -d native; then
|
||||
cd native
|
||||
make
|
||||
make $*
|
||||
cd ../powerpc64-ps3-elf
|
||||
ln -fs ../native/tools/qfcc/source/qfcc .
|
||||
ln -fs ../native/tools/pak/pak .
|
||||
|
|
Loading…
Reference in a new issue