Commit f4c589ff authored by bk@work.mysql.com's avatar bk@work.mysql.com
Browse files

Import changeset

parent 7eec25e3
Loading
Loading
Loading
Loading

.cvsignore

0 → 100644
+37 −0
Original line number Diff line number Diff line
.snprj
COPYING
COPYING.LIB
INSTALL-SOURCE
INSTALL-SOURCE-GENERIC
Logs
MIRRORS
Makefile
Makefile.in
NEW-RPMS
PUBLIC
Projects
TODO
WIN-LICENSE
aclocal.m4
binary
compile
confdefs.h
config.cache
config.h
config.log
config.status
configure
configure.in-removed
conftest.c
conftest.s1
conftest.s2
conftest.subs
internal-docs
libtool
linked_client_sources
linked_server_sources
mysql-copyright-120700-194832
mysql-copyright-120700-221248
skr
stamp-h
tmp

BUILD/.cvsignore

0 → 100644
+1 −0
Original line number Diff line number Diff line
compile-pentium-test

BUILD/compile-alpha

0 → 100755
+7 −0
Original line number Diff line number Diff line
make -k clean
/bin/rm -f */.deps/*.P */*.o
/bin/rm -f config.cache
aclocal; autoheader; aclocal; automake; autoconf

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
+35 −0
Original line number Diff line number Diff line
/bin/rm -f */.deps/*.P */*.o
make -k clean
/bin/rm -f */.deps/*.P */*.o
/bin/rm -f config.cache mysql-*.tar.gz
aclocal; autoheader; aclocal; automake; autoconf

CC=ccc CFLAGS="-fast -O3 -fomit-frame-pointer" CXX=gcc CXXFLAGS="-O6 -fomit-frame-pointer -felide-constructors -fno-exceptions -fno-rtti -mcpu=ev6 -Wa,-mev6" CXXLDFLAGS='/usr/lib/compaq/libots-2.2.7/libots.so /usr/lib/compaq/cpml-5.0.0/libcpml_ev6.a' ./configure --prefix=/usr/local/mysql --disable-shared --with-extra-charsets=complex
make
if [ $? = 0 ]
then
  rm */.deps/*
  bin/mysqladmin shutdown
  make install
  if [ $? = 0 ]
  then
     scripts/make_binary_distribution
  fi
fi

exit

# This should give better performance by compiling many files at once, but
# according to our benchmarks there isn't any real difference.

pwd=`pwd`
for i in */make-ccc
do
   cd `dirname $i`
   make-ccc
   cd $pwd
done
cd sql
rm mysqld .deps/*.P
make mysqld
cd $pwd
+7 −0
Original line number Diff line number Diff line
make -k clean
/bin/rm -f */.deps/*.P
/bin/rm -f config.cache
aclocal; autoheader; aclocal; automake; autoconf

CFLAGS=-O6 CXX=gcc CXXFLAGS="-O6 -felide-constructors -fno-exceptions -fno-rtti" ./configure --prefix=/usr/local/mysql --with-debug
make
Loading