mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 03:52:35 +01:00
12 lines
414 B
Bash
Executable file
12 lines
414 B
Bash
Executable file
#! /bin/sh
|
|
|
|
/bin/rm -f */.deps/*.P */*.o
|
|
make -k maintainer-clean
|
|
/bin/rm -f */.deps/*.P */*.o
|
|
/bin/rm -f */.deps/*.P config.cache storage/innobase/config.cache mysql-*.tar.gz
|
|
|
|
path=`dirname $0`
|
|
. "$path/autorun.sh"
|
|
|
|
CFLAGS=-O1 CC=gcc CXX=g++ CXXFLAGS="-O1 -felide-constructors -fno-exceptions -fno-rtti" ./configure --prefix=/usr/local/mysql --with-debug --with-extra-charsets=complex --without-extra-tools
|
|
make
|