mirror of
https://github.com/upx/upx.git
synced 2024-11-23 20:59:55 +00:00
168 lines
4.7 KiB
Bash
168 lines
4.7 KiB
Bash
#! /bin/bash
|
|
## vim:set ts=4 sw=4 et:
|
|
set -e; set -o pipefail
|
|
|
|
# Copyright (C) Markus Franz Xaver Johannes Oberhumer
|
|
|
|
if [[ $TRAVIS_OS_NAME == osx ]]; then
|
|
argv0=$0; argv0abs=$(greadlink -en -- "$0"); argv0dir=$(dirname "$argv0abs")
|
|
else
|
|
argv0=$0; argv0abs=$(readlink -en -- "$0"); argv0dir=$(dirname "$argv0abs")
|
|
fi
|
|
source "$argv0dir/travis_init.sh" || exit 1
|
|
|
|
# create dirs
|
|
cd / || exit 1
|
|
mkbuilddirs $upx_BUILDDIR $ucl_BUILDDIR $upx_testsuite_BUILDDIR $zlib_BUILDDIR
|
|
cd / && cd $upx_SRCDIR || exit 1
|
|
|
|
echo
|
|
print_settings
|
|
echo
|
|
echo "$CC --version"; $CC --version
|
|
echo "$CXX --version"; $CXX --version
|
|
echo
|
|
|
|
# check whitespace
|
|
if [[ $TRAVIS_OS_NAME == linux ]]; then
|
|
cd / && cd $upx_SRCDIR || exit 1
|
|
echo "Checking source code for whitespace violations..."
|
|
bash ./src/stub/scripts/check_whitespace.sh || exit 1
|
|
echo " Passed."
|
|
fi # linux
|
|
|
|
set -x
|
|
|
|
#
|
|
# rebuild UPX stubs (needs upx-stubtools)
|
|
#
|
|
|
|
if [[ $BM_X =~ (^|\+)rebuild-stubs($|\+) ]]; then
|
|
if [[ -f "$HOME/local/bin/bin-upx/upx-stubtools-check-version" ]]; then
|
|
bin_upx=$(readlink -en -- "$HOME/local/bin/bin-upx")
|
|
elif [[ -f "$HOME/.local/bin/bin-upx/upx-stubtools-check-version" ]]; then
|
|
bin_upx=$(readlink -en -- "$HOME/.local/bin/bin-upx")
|
|
else
|
|
bin_upx=$(readlink -en -- "$upx_SRCDIR/../deps/bin-upx-20210104")
|
|
fi
|
|
cd / && cd $upx_SRCDIR || exit 1
|
|
extra_subdirs=()
|
|
extra_subdirs+=( src/stub/src/arch/amd64 )
|
|
extra_subdirs+=( src/stub/src/arch/arm/v4a )
|
|
extra_subdirs+=( src/stub/src/arch/arm/v4t )
|
|
extra_subdirs+=( src/stub/src/arch/arm64/v8 )
|
|
extra_subdirs+=( src/stub/src/arch/i386 )
|
|
extra_subdirs+=( src/stub/src/arch/m68k/m68000 )
|
|
extra_subdirs+=( src/stub/src/arch/m68k/m68020 )
|
|
extra_subdirs+=( src/stub/src/arch/mips/r3000 )
|
|
extra_subdirs+=( src/stub/src/arch/powerpc/32 )
|
|
extra_subdirs+=( src/stub/src/arch/powerpc/64 )
|
|
extra_subdirs+=( src/stub/src/arch/powerpc/64le )
|
|
make -C src/stub maintainer-clean
|
|
for d in ${extra_subdirs[@]}; do
|
|
make -C $d -f Makefile.extra maintainer-clean
|
|
git status $d || true
|
|
done
|
|
git status src/stub/src || true
|
|
git status || true
|
|
failed=0
|
|
for d in ${extra_subdirs[@]}; do
|
|
PATH="$bin_upx:$PATH" make -C $d -f Makefile.extra || failed=1
|
|
done
|
|
PATH="$bin_upx:$PATH" make -C src/stub all || failed=1
|
|
if [[ $failed != 0 ]]; then
|
|
echo "UPX-ERROR: FATAL: rebuild-stubs failed"
|
|
exit 1
|
|
fi
|
|
if ! git diff --quiet; then
|
|
git status || true
|
|
git diff || true
|
|
echo "UPX-ERROR: FATAL: rebuild-stubs git status mismatch. See log file."
|
|
exit 1
|
|
fi
|
|
git status
|
|
if [[ $BM_X == rebuild-stubs ]]; then
|
|
echo "X=rebuild-stubs done. Exiting."
|
|
exit 0
|
|
fi
|
|
unset bin_upx extra_subdirs d failed
|
|
fi
|
|
|
|
#
|
|
# build UCL
|
|
#
|
|
|
|
cd / && cd $ucl_BUILDDIR || exit 1
|
|
# patch UCL
|
|
sed 's/^#elif (ACC_ARCH_AMD64 || ACC_ARCH_IA64)$/& \&\& !defined(__ILP32__)/' $ucl_SRCDIR/acc/acc_chk.ch > a.tmp
|
|
if cmp -s a.tmp $ucl_SRCDIR/acc/acc_chk.ch; then rm a.tmp; else mv a.tmp $ucl_SRCDIR/acc/acc_chk.ch; fi
|
|
if [[ $BUILD_LOCAL_UCL == 1 ]]; then
|
|
# ucl-1.03/configure is too old - build manually
|
|
rm -f ./*.o libucl.a
|
|
$CC -O2 -I$ucl_SRCDIR/include -I$ucl_SRCDIR -c $ucl_SRCDIR/src/*.c
|
|
$AR rcs libucl.a *.o
|
|
mkdir -p src/.libs
|
|
cp libucl.a src/.libs
|
|
else
|
|
if [[ ! -f config.status ]]; then
|
|
$ucl_SRCDIR/configure --enable-static --disable-shared --disable-asm
|
|
fi
|
|
make
|
|
fi
|
|
|
|
#
|
|
# build zlib
|
|
#
|
|
|
|
if [[ $BUILD_LOCAL_ZLIB == 1 ]]; then
|
|
cd / && cd $zlib_BUILDDIR || exit 1
|
|
# build manually
|
|
rm -f ./*.o libz.a
|
|
$CC -O2 -c $zlib_SRCDIR/*.c
|
|
$AR rcs libz.a *.o
|
|
fi
|
|
|
|
#
|
|
# build UPX
|
|
#
|
|
|
|
export UPX_UCLDIR="$ucl_SRCDIR"
|
|
cd / && cd $upx_BUILDDIR || exit 1
|
|
make="make -f $upx_SRCDIR/src/Makefile"
|
|
EXTRA_LDFLAGS="$EXTRA_LDFLAGS -L$ucl_BUILDDIR/src/.libs"
|
|
if [[ $BUILD_LOCAL_ZLIB == 1 ]]; then
|
|
EXTRA_CPPFLAGS="$EXTRA_CPPFLAGS -I$zlib_SRCDIR"
|
|
EXTRA_LDFLAGS="$EXTRA_LDFLAGS -L$zlib_BUILDDIR"
|
|
fi
|
|
if [[ $BM_B =~ (^|\+)coverage($|\+) ]]; then
|
|
EXTRA_CXXFLAGS="$EXTRA_CXXFLAGS -fprofile-arcs -ftest-coverage"
|
|
EXTRA_LDFLAGS="$EXTRA_LDFLAGS -fprofile-arcs -ftest-coverage"
|
|
fi
|
|
if [[ $BM_B =~ (^|\+)debug($|\+) ]]; then
|
|
make="$make BUILD_TYPE_DEBUG=1"
|
|
fi
|
|
if [[ $BM_B =~ (^|\+)sanitize($|\+) ]]; then
|
|
make="$make BUILD_TYPE_SANITIZE=1"
|
|
fi
|
|
if [[ $BM_B =~ (^|\+)scan-build($|\+) ]]; then
|
|
make="$SCAN_BUILD $make"
|
|
fi
|
|
if [[ $BM_B =~ (^|\+)valgrind($|\+) ]]; then
|
|
EXTRA_CPPFLAGS="$EXTRA_CPPFLAGS -DWITH_VALGRIND"
|
|
fi
|
|
if [[ $BM_B =~ (^|\+)ALLOW_FAIL($|\+) ]]; then
|
|
echo "ALLOW_FAIL"
|
|
set +e
|
|
fi
|
|
export EXTRA_CPPFLAGS EXTRA_CXXFLAGS EXTRA_LDFLAGS
|
|
|
|
[[ -z $upx_exeext ]] && upx_exeext=.out
|
|
$make exeext=$upx_exeext
|
|
|
|
pwd
|
|
ls -l upx${upx_exeext}
|
|
$SIZE upx${upx_exeext} || true
|
|
file upx${upx_exeext}
|
|
|
|
exit 0
|