git-svn-id: file:///srv/svn/repos/haiku/buildtools/trunk@16213 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Andrew Bachmann 2006-02-03 02:32:59 +00:00
parent aa62780422
commit 23c3fee924
2 changed files with 12 additions and 0 deletions

6
legacy/compile-binutils Executable file
View File

@ -0,0 +1,6 @@
#!/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 ..

6
legacy/compile-gcc Executable file
View File

@ -0,0 +1,6 @@
#!/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 ..