Files
MyLFS/phase1/binutils.sh
2022-04-30 16:09:49 -04:00

17 lines
195 B
Bash

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