buildtools/legacy/compile-binutils

7 lines
181 B
Plaintext
Raw Normal View History

#!/bin/bash
mkdir -p binutils-obj
cd binutils-obj
CFLAGS="-O2" CXXFLAGS="-O2" ../binutils/configure --prefix=/boot/develop/tools/gnupro --disable-nls --enable-shared=yes
make
cd ..