mirror of
https://review.haiku-os.org/buildtools
synced 2025-01-18 12:28:37 +01:00
7 lines
201 B
Plaintext
7 lines
201 B
Plaintext
|
#!/bin/bash
|
||
|
mkdir -p gcc-obj
|
||
|
cd gcc-obj
|
||
|
CFLAGS="-O2" CXXFLAGS="-O2" ../gcc/configure --prefix=/boot/develop/tools/gnupro --disable-nls --enable-shared=yes --enable-languages=c,c++
|
||
|
make bootstrap
|
||
|
cd ..
|