diff options
author | monty@donna.mysql.com <> | 2000-12-18 19:06:10 +0200 |
---|---|---|
committer | monty@donna.mysql.com <> | 2000-12-18 19:06:10 +0200 |
commit | 8dc9ddf9775667a3fbf2c1c0b25b8c06f3dfb7e4 (patch) | |
tree | 178f60ffde2130b8bf7b38f964431d9a3837db88 /BUILD | |
parent | e63aa638a96191ba7d878a5b6ff3c10aea026a17 (diff) | |
parent | 2f632fd151864b4f1e2056d8ded0dae63ed142a2 (diff) | |
download | mariadb-git-8dc9ddf9775667a3fbf2c1c0b25b8c06f3dfb7e4.tar.gz |
Merge work:/my/mysql into donna.mysql.com:/home/my/bk/mysql
Diffstat (limited to 'BUILD')
-rwxr-xr-x | BUILD/compile-pentium | 2 | ||||
-rwxr-xr-x | BUILD/compile-pentium-pgcc | 10 |
2 files changed, 11 insertions, 1 deletions
diff --git a/BUILD/compile-pentium b/BUILD/compile-pentium index 2197ca28628..79d5c5e19b9 100755 --- a/BUILD/compile-pentium +++ b/BUILD/compile-pentium @@ -4,6 +4,6 @@ make -k clean aclocal; autoheader; aclocal; automake; autoconf -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 +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 diff --git a/BUILD/compile-pentium-pgcc b/BUILD/compile-pentium-pgcc new file mode 100755 index 00000000000..ee70fd2bde0 --- /dev/null +++ b/BUILD/compile-pentium-pgcc @@ -0,0 +1,10 @@ +AM_MAKEFLAGS="-j 2" +make -k clean +/bin/rm -f */.deps/*.P config.cache + +aclocal; autoheader; aclocal; automake; autoconf + +export PATH=/usr/local/pgcc/bin:$PATH +CFLAGS="-O6 -mpentiumpro -fomit-frame-pointer -mstack-align-double" CXX=gcc CXXFLAGS="-O6 -mpentiumpro -fomit-frame-pointer -felide-constructors -fno-exceptions -fno-rtti -mstack-align-double" ./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 |