From ea1947ffcc606d757357398b24e74a3f4ecefa07 Mon Sep 17 00:00:00 2001 From: neonloop Date: Wed, 20 Oct 2021 14:54:27 +0000 Subject: Initial commit from steward-fu release --- build-opendingux.sh | 159 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 159 insertions(+) create mode 100644 build-opendingux.sh (limited to 'build-opendingux.sh') diff --git a/build-opendingux.sh b/build-opendingux.sh new file mode 100644 index 0000000..700f5d3 --- /dev/null +++ b/build-opendingux.sh @@ -0,0 +1,159 @@ +#!/bin/sh + +## -- DINGUX USER SETTINGS + +## DINGUX - This should point to the root of your tool-chain {i.e. folder above the BIN dir} + +DINGUX=/opt/opendingux-toolchain/usr + +## HOST and TARGET - These should be the canonical tool names of your tool. +## For the sake of this script HOST and TARGET should be the same. +## Defaults would be 'mipsel-linux'. + +HOST=mipsel-linux +TARGET=mipsel-linux +BUILD=`uname -m` +PKG_CONFIG_PATH=/opt/opendingux-toolchain/usr/lib/pkgconfig + +## -- END DINGUX USER SETTINGS + +export DINGUX +export HOST +export TARGET +export PKG_CONFIG_PATH + +PREFIX=$DINGUX +export PREFIX + +PATH=$PATH:$DINGUX/bin +export PATH + +#ln -s `whereis -b pkg-config | sed 's/pkg-config\: //g'` /opt/opendingux-toolchain/usr/bin/pkg-config + +# Do not edit below here +CC="${DINGUX}/bin/${HOST}-gcc" +CXX="${DINGUX}/bin/${HOST}-g++" +AR="${DINGUX}/bin/${HOST}-ar" +STRIP="${DINGUX}/bin/${HOST}-strip" +RANLIB="${DINGUX}/bin/${HOST}-ranlib" +LD="${DINGUX}/bin/${HOST}-ld" + +# -msoft-float -funroll-loops -ffast-math -fomit-frame-pointer -fno-strength-reduce -finline-functions -G0 -march=mips32 -mtune=r4600 -mno-mips16 +CFLAGS="-DNO_ZLIB -D_REENTRANT -DTARGET_DINGUX_A320 -O2 -I${DINGUX}/include -msoft-float -funroll-loops -ffast-math -fomit-frame-pointer -fno-strength-reduce -finline-functions -G0 -march=mips32 -mtune=r4600 -mno-mips16" +LDFLAGS="-L${DINGUX}/lib -D_REENTRANT" +#PKG_CONFIG="${DINGUX}/bin/pkg-config" + +export CC +export CXX +export AR +export STRIP +export RANLIB +export LD + +export CFLAGS +export LDFLAGS +export PKG_CONFIG + +echo Current settings. +echo +echo Install root/Working dir = $DINGUX +echo Tool locations = $DINGUX/bin +echo Host/Target = $HOST / $TARGET +echo + +echo CC = $CC +echo CXX = $CXX +echo AR = $AR +echo STRIP = $STRIP +echo RANLIB = $RANLIB +echo LD = $LD + +echo CFLAGS = $CFLAGS +echo LDFLAGS = $LDFLAGS +echo PKG_CONFIG = $PKG_CONFIG + +echo "### Building 3rd party software ###" + +cd 3rdparty/des-4.04b +case $1 in + release) + make clean && make + ;; + + *) + make + ;; +esac +if [ $? -ne 0 ]; then + echo "*** ABORT ***" + exit 1 +fi +cd - + +echo "### Building BennuGD Core ###" + +cd core +case $1 in + release) + ./configure --prefix=${PREFIX} --target=${TARGET} --host=${HOST} --build=${BUILD} --enable-shared PKG_CONFIG_LIBDIR=${PKG_CONFIG_PATH} && make clean && make + ;; + + *) + make + ;; +esac +if [ $? -ne 0 ]; then + echo "*** ABORT ***" + exit 1 +fi +cd - + +echo "### Building BennuGD Modules ###" + +cd modules +case $1 in + release) + ./configure --prefix=${PREFIX} --target=${TARGET} --host=${HOST} --build=${BUILD} --enable-shared PKG_CONFIG_LIBDIR=${PKG_CONFIG_PATH} && make clean && make + ;; + + *) + make + ;; +esac +if [ $? -ne 0 ]; then + echo "*** ABORT ***" + exit 1 +fi +cd - + +echo "### Building BennuGD Tools ###" + +cd tools/moddesc +case $1 in + release) + ./configure --prefix=${PREFIX} --target=${TARGET} --host=${HOST} --build=${BUILD} --enable-shared PKG_CONFIG_LIBDIR=${PKG_CONFIG_PATH} && make clean && make + ;; + + *) + make + ;; +esac +if [ $? -ne 0 ]; then + echo "*** ABORT ***" + exit 1 +fi +cd - + +echo "### Copying files to bin folder ###" + +mkdir -p bin/$TARGET 2>/dev/null +cp 3rdparty/des-4.04b/libdes.so bin/$TARGET +cp core/bgdi/src/.libs/bgdi bin/$TARGET +cp core/bgdc/src/bgdc bin/$TARGET +cp core/bgdrtm/src/.libs/libbgdrtm.so bin/$TARGET +cp $(find modules -name '*.so') bin/$TARGET +cp tools/moddesc/moddesc bin/$TARGET + +echo "### Build done! ###" + +exit 0 -- cgit v1.2.3