mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 03:52:35 +01:00
7f84f426c8
BUILD/compile-solaris-amd64: Changing build script to be in line with the other build scripts using GCC. BUILD/compile-solaris-amd64-debug: Adding build script for Solaris 10 on AMD64. BUILD/compile-solaris-amd64-forte-debug: Adding build script for Solaris 10 on AMD64. BUILD/compile-solaris-amd64-forte: Adding build script for Solaris 10 on AMD64.
10 lines
344 B
Bash
10 lines
344 B
Bash
#! /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"
|