Files
MyLFS/phase1/binutils.sh
2023-02-14 20:08:31 -05:00

18 lines
221 B
Bash

# Bintuils Phase 1
mkdir build
cd build
../configure \
--prefix=$LFS/tools \
--with-sysroot=$LFS \
--target=$LFS_TGT \
--disable-nls \
--enable-gprofng=no \
--disable-werror
make
make install