mirror of
https://review.haiku-os.org/buildtools
synced 2024-11-23 07:18:49 +01:00
scripts
git-svn-id: file:///srv/svn/repos/haiku/buildtools/trunk@16213 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
parent
aa62780422
commit
23c3fee924
6
legacy/compile-binutils
Executable file
6
legacy/compile-binutils
Executable 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
6
legacy/compile-gcc
Executable 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 ..
|
Loading…
Reference in New Issue
Block a user