2016-12-02 21:54:36 +01:00
|
|
|
TERMUX_PKG_HOMEPAGE=https://www.gnu.org/software/binutils/
|
2015-06-13 01:03:31 +02:00
|
|
|
TERMUX_PKG_DESCRIPTION="Collection of binary tools, the main ones being ld, the GNU linker, and as, the GNU assembler"
|
2019-01-20 22:39:59 +01:00
|
|
|
TERMUX_PKG_LICENSE="GPL-2.0"
|
2020-12-20 14:16:34 +01:00
|
|
|
TERMUX_PKG_MAINTAINER="@termux"
|
2021-08-17 07:44:21 +02:00
|
|
|
TERMUX_PKG_VERSION=2.37
|
2021-10-22 10:01:24 +02:00
|
|
|
TERMUX_PKG_REVISION=3
|
2020-07-25 02:00:57 +02:00
|
|
|
TERMUX_PKG_SRCURL=https://mirrors.kernel.org/gnu/binutils/binutils-${TERMUX_PKG_VERSION}.tar.xz
|
2021-08-17 07:44:21 +02:00
|
|
|
TERMUX_PKG_SHA256=820d9724f020a3e69cb337893a0b63c2db161dadcb0e06fc11dc29eb1e84a32c
|
2019-06-19 20:16:39 +02:00
|
|
|
TERMUX_PKG_DEPENDS="libc++, zlib"
|
2019-07-20 10:42:33 +02:00
|
|
|
TERMUX_PKG_BREAKS="binutils-dev"
|
|
|
|
TERMUX_PKG_REPLACES="binutils-dev"
|
2018-03-20 23:10:53 +01:00
|
|
|
TERMUX_PKG_EXTRA_CONFIGURE_ARGS="--enable-gold --enable-plugins --disable-werror --with-system-zlib --enable-new-dtags"
|
2015-06-13 01:03:31 +02:00
|
|
|
TERMUX_PKG_EXTRA_MAKE_ARGS="tooldir=$TERMUX_PREFIX"
|
|
|
|
TERMUX_PKG_RM_AFTER_INSTALL="share/man/man1/windmc.1 share/man/man1/windres.1 bin/ld.bfd"
|
2019-08-12 17:28:41 +02:00
|
|
|
TERMUX_PKG_NO_STATICSPLIT=true
|
2021-09-28 17:21:42 +02:00
|
|
|
TERMUX_PKG_GROUPS="base-devel"
|
2018-03-20 23:15:46 +01:00
|
|
|
|
2016-01-28 17:17:28 +01:00
|
|
|
# Avoid linking against libfl.so from flex if available:
|
|
|
|
export LEXLIB=
|
|
|
|
|
2019-02-08 10:37:29 +01:00
|
|
|
termux_step_pre_configure() {
|
2018-09-19 23:29:39 +02:00
|
|
|
export CPPFLAGS="$CPPFLAGS -Wno-c++11-narrowing"
|
2018-10-30 14:38:16 +01:00
|
|
|
|
2018-11-01 14:02:12 +01:00
|
|
|
if [ $TERMUX_ARCH_BITS = 32 ]; then
|
2018-10-30 14:38:16 +01:00
|
|
|
export LIB_PATH="${TERMUX_PREFIX}/lib:/system/lib"
|
|
|
|
else
|
|
|
|
export LIB_PATH="${TERMUX_PREFIX}/lib:/system/lib64"
|
|
|
|
fi
|
2018-09-19 23:29:39 +02:00
|
|
|
}
|
|
|
|
|
2019-02-08 10:37:29 +01:00
|
|
|
termux_step_post_make_install() {
|
2015-06-13 01:03:31 +02:00
|
|
|
cp $TERMUX_PKG_BUILDER_DIR/ldd $TERMUX_PREFIX/bin/ldd
|
2016-12-02 21:54:36 +01:00
|
|
|
cd $TERMUX_PREFIX/bin
|
|
|
|
# Setup symlinks as these are used when building, so used by
|
|
|
|
# system setup in e.g. python, perl and libtool:
|
|
|
|
for b in ar ld nm objdump ranlib readelf strip; do
|
|
|
|
ln -s -f $b $TERMUX_HOST_PLATFORM-$b
|
|
|
|
done
|
2019-02-09 12:16:54 +01:00
|
|
|
ln -sf ld.gold gold
|
2015-06-13 01:03:31 +02:00
|
|
|
}
|