mirror of
https://review.haiku-os.org/buildtools
synced 2025-01-31 18:44:48 +01:00
7 lines
181 B
Plaintext
7 lines
181 B
Plaintext
|
#!/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 ..
|