binutils: Fix merge issue
[termux-packages] / packages / binutils / build.sh
CommitLineData
f63405a9 1TERMUX_PKG_HOMEPAGE=https://www.gnu.org/software/binutils/
59f0d218 2TERMUX_PKG_DESCRIPTION="Collection of binary tools, the main ones being ld, the GNU linker, and as, the GNU assembler"
387ce9a3 3TERMUX_PKG_VERSION=2.30
38ebbf38 4TERMUX_PKG_REVISION=2
722ed12d 5TERMUX_PKG_SRCURL=https://mirrors.kernel.org/gnu/binutils/binutils-${TERMUX_PKG_VERSION}.tar.gz
2d124b67 6TERMUX_PKG_EXTRA_CONFIGURE_ARGS="--enable-gold --enable-plugins --disable-werror --with-system-zlib --enable-new-dtags"
387ce9a3 7TERMUX_PKG_SHA256=8c3850195d1c093d290a716e20ebcaa72eda32abf5e3d8611154b39cff79e9ea
59f0d218
FF
8TERMUX_PKG_EXTRA_MAKE_ARGS="tooldir=$TERMUX_PREFIX"
9TERMUX_PKG_RM_AFTER_INSTALL="share/man/man1/windmc.1 share/man/man1/windres.1 bin/ld.bfd"
2d124b67 10TERMUX_PKG_KEEP_STATIC_LIBRARIES=true
38ebbf38 11
d104e472
FF
12# Avoid linking against libfl.so from flex if available:
13export LEXLIB=
14
59f0d218
FF
15termux_step_post_make_install () {
16 cp $TERMUX_PKG_BUILDER_DIR/ldd $TERMUX_PREFIX/bin/ldd
f63405a9 17 cd $TERMUX_PREFIX/bin
f63405a9
FF
18 # Setup symlinks as these are used when building, so used by
19 # system setup in e.g. python, perl and libtool:
20 for b in ar ld nm objdump ranlib readelf strip; do
21 ln -s -f $b $TERMUX_HOST_PLATFORM-$b
22 done
2d124b67 23 ln -sf ld.gold gold
59f0d218 24}