mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 13:02:28 +01:00
c6a395af09
This patch provides compile helper scripts only, no server logic is affected. Before this patch, GCOV and GPROF build scripts were only provided for pentium platforms. With this patch, pentium, pentium64 and amd64 platforms have associated helper build scripts. The GCOV and GPROF specific compilation flags are set once in SETUP.sh, to avoid code duplication.
9 lines
188 B
Bash
Executable file
9 lines
188 B
Bash
Executable file
#! /bin/sh
|
|
|
|
path=`dirname $0`
|
|
. "$path/SETUP.sh"
|
|
|
|
extra_flags="$pentium_cflags $gprof_compile_flags"
|
|
extra_configs="$pentium_configs $debug_configs $gprof_link_flags"
|
|
|
|
. "$path/FINISH.sh"
|