diff options
author | unknown <tim@cane.mysql.fi> | 2000-12-18 23:24:19 +0200 |
---|---|---|
committer | unknown <tim@cane.mysql.fi> | 2000-12-18 23:24:19 +0200 |
commit | 447b5534d02b99327d73ac15edb43bcf5d793e7e (patch) | |
tree | 144029d1dacb5aaa27e21b64dbfc97258409e2ab /BUILD/compile-alpha | |
parent | 7cdb2b2d1d1efef069a305d130abf57d099c790e (diff) | |
download | mariadb-git-447b5534d02b99327d73ac15edb43bcf5d793e7e.tar.gz |
- cleaned up BUILD scripts
- consolidate common functionality into one place
- make them detect gmake/make
BUILD/compile-alpha:
- cleaned up BUILD scripts
- consolidate common functionality into one place
- make them detect gmake/make
BUILD/compile-pentium-debug-no-bdb:
- cleaned up BUILD scripts
- consolidate common functionality into one place
- make them detect gmake/make
BUILD/compile-pentium-debug:
- cleaned up BUILD scripts
- consolidate common functionality into one place
- make them detect gmake/make
BUILD/compile-pentium-gcov:
- cleaned up BUILD scripts
- consolidate common functionality into one place
- make them detect gmake/make
BUILD/compile-pentium-myodbc:
- cleaned up BUILD scripts
- consolidate common functionality into one place
- make them detect gmake/make
BUILD/compile-pentium:
- cleaned up BUILD scripts
- consolidate common functionality into one place
- make them detect gmake/make
BUILD/compile-solaris-sparc-purify:
- cleaned up BUILD scripts
- consolidate common functionality into one place
- make them detect gmake/make
BUILD/compile-solaris-sparc:
- cleaned up BUILD scripts
- consolidate common functionality into one place
- make them detect gmake/make
Diffstat (limited to 'BUILD/compile-alpha')
-rwxr-xr-x | BUILD/compile-alpha | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/BUILD/compile-alpha b/BUILD/compile-alpha index ff70be8a5ab..10b9d67e1c1 100755 --- a/BUILD/compile-alpha +++ b/BUILD/compile-alpha @@ -1,7 +1,9 @@ -make -k clean -/bin/rm -f */.deps/*.P */*.o -/bin/rm -f config.cache -aclocal; autoheader; aclocal; automake; autoconf +#! /bin/sh -CFLAGS="-O6 -fomit-frame-pointer -mcpu=ev6 -Wa,-mev6" CXX=gcc CXXFLAGS="-O6 -mcpu=ev6 -Wa,-mev6 -fomit-frame-pointer -felide-constructors -fno-exceptions -fno-rtti" ./configure --prefix=/usr/local/mysql --disable-shared --with-extra-charsets=complex -make +path=`dirname $0` +. "$path/SETUP.sh" + +extra_flags="$alpha_cflags $fast_cflags" +extra_configs="$alpha_configs" + +. "$path/FINISH.sh" |