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-pentium | |
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-pentium')
-rwxr-xr-x | BUILD/compile-pentium | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/BUILD/compile-pentium b/BUILD/compile-pentium index 2197ca28628..cdbc7e773eb 100755 --- a/BUILD/compile-pentium +++ b/BUILD/compile-pentium @@ -1,9 +1,10 @@ -AM_MAKEFLAGS="-j 2" -make -k clean -/bin/rm -f */.deps/*.P config.cache +#! /bin/sh -aclocal; autoheader; aclocal; automake; autoconf +path=`dirname $0` +. "$path/SETUP.sh" -CFLAGS="-O6 -mpentiumpro -fomit-frame-pointer" CXX=gcc CXXFLAGS="-O6 -mpentiumpro -fomit-frame-pointer -felide-constructors -fno-exceptions -fno-rtti" ./configure --prefix=/usr/local/mysql --enable-assembler --with-mysqld-ldflags=-all-static --disable-shared --with-extra-charsets=complex --enable-thread-safe-client -make -j 2 -strip sql/mysqld +extra_flags="$pentium_cflags $fast_cflags" +extra_configs="$pentium_configs" +strip=yes + +. "$path/FINISH.sh" |