mirror of
https://github.com/krglaws/MyLFS.git
synced 2025-08-03 16:44:38 +00:00
19 lines
217 B
Bash
19 lines
217 B
Bash
# Bintuils Phase 1
|
|
|
|
echo $PATCH_BINUTILS
|
|
|
|
mkdir build
|
|
cd build
|
|
|
|
../configure \
|
|
--prefix=$LFS/tools \
|
|
--with-sysroot=$LFS \
|
|
--target=$LFS_TGT \
|
|
--disable-nls \
|
|
--disable-werror
|
|
|
|
make
|
|
|
|
make install
|
|
|