| author | Andrew Bachmann <andrewbachmann@nowhere.fake> | 2006-02-03 2:32:59.0 +00:00:00 |
|---|---|---|
| committer | Andrew Bachmann <andrewbachmann@nowhere.fake> | 2006-02-03 2:32:59.0 +00:00:00 |
| commit | 23c3fee92402f56e2c7e725bdd0fee05a4efdd6e [patch] |
|
| tree | 836acc5b2dedcb5809f4b54895f35bf226289b85 |
|
| parent | aa62780422b181291d0af7ba1dc442689fc9bf87 |
|
| download | 23c3fee92402f56e2c7e725bdd0fee05a4efdd6e.tar.gz |
|
scripts
git-svn-id: file:///srv/svn/repos/haiku/buildtools/trunk@16213 a95241bf-73f2-0310-859d-f6bbb57e9c96
Diff
legacy/compile-binutils | 6 ++++++ legacy/compile-gcc | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/legacy/compile-binutils b/legacy/compile-binutils new file mode 100755 index 0000000..9655650 100755 --- /dev/null +++ b/legacy/compile-binutils @@ -1,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 .. diff --git a/legacy/compile-gcc b/legacy/compile-gcc new file mode 100755 index 0000000..8e297e2 100755 --- /dev/null +++ b/legacy/compile-gcc @@ -1,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 ..