mirror of
https://github.com/krglaws/MyLFS.git
synced 2025-07-25 01:23:16 +00:00
22 lines
454 B
Bash
22 lines
454 B
Bash
# Binutils Phase 2
|
|
sed '6009s/$add_dir//' -i ltmain.sh
|
|
|
|
mkdir build
|
|
cd build
|
|
|
|
../configure \
|
|
--prefix=/usr \
|
|
--build=$(../config.guess) \
|
|
--host=$LFS_TGT \
|
|
--disable-nls \
|
|
--enable-shared \
|
|
--enable-gprofng=no \
|
|
--disable-werror \
|
|
--enable-64-bit-bfd
|
|
|
|
make
|
|
make DESTDIR=$LFS install
|
|
|
|
rm $LFS/usr/lib/lib{bfd,ctf,ctf-nobfd,opcodes}.{a,la}
|
|
|