forked from alnux/repo
28 lines
704 B
Text
Executable file
28 lines
704 B
Text
Executable file
wget -O binutils-2.36.1.tar.xz https://ftp.gnu.org/gnu/binutils/binutils-2.36.1.tar.xz
|
|
tar -xf binutils-2.36.1.tar.xz
|
|
cd binutils-2.36.1
|
|
|
|
chmod +x makeinfo
|
|
export PATH=$PATH:$PWD
|
|
./configure \
|
|
--prefix=/usr \
|
|
--with-lib-path=/usr/lib:/usr/local/lib \
|
|
--enable-targets=x86_64-pep \
|
|
--enable-deterministic-archives \
|
|
--disable-gold \
|
|
--enable-lto \
|
|
--enable-ld=default \
|
|
--enable-plugins \
|
|
--disable-multilib \
|
|
--disable-werror \
|
|
--disable-gdb \
|
|
--disable-nls \
|
|
--disable-readline \
|
|
--disable-gprof \
|
|
--with-mmap \
|
|
--with-system-zlib
|
|
make configure-host
|
|
make tooldir=/usr
|
|
make DESTDIR="$1" tooldir=/usr install
|
|
|
|
ln -sf ld.bfd "$1/usr/bin/ld"
|