mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 13:02:28 +01:00
11 lines
344 B
Text
11 lines
344 B
Text
|
#! /bin/sh
|
||
|
path=`dirname $0`
|
||
|
. "$path/SETUP.sh"
|
||
|
amd64_cflags="-m64 -mtune=athlon64"
|
||
|
extra_flags="$amd64_cflags $debug_cflags $max_cflags"
|
||
|
c_warnings="$c_warnings $debug_extra_warnings"
|
||
|
cxx_warnings="$cxx_warnings $debug_extra_warnings"
|
||
|
extra_configs="$amd64_configs $debug_configs $max_configs --enable-thread-safe-client"
|
||
|
|
||
|
. "$path/FINISH.sh"
|