diff options
author | monty@donna.mysql.com <> | 2000-12-18 16:09:19 +0200 |
---|---|---|
committer | monty@donna.mysql.com <> | 2000-12-18 16:09:19 +0200 |
commit | 155823ad5118be2fe50d9ef705bc5d627b7333b0 (patch) | |
tree | c93d85948282e07d8ce6727243cecb6a03d0335f /BUILD | |
parent | 5cce198b6959a910925bf90c5abfb2275bff1891 (diff) | |
download | mariadb-git-155823ad5118be2fe50d9ef705bc5d627b7333b0.tar.gz |
Lots of new benchmark runs
Remember filename for temporary files created with mkstemp
Fixed wrongly allocated BDB share structure
Cleanups for SunPRO
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 |