Bug#23062 (GCOV build: helper scripts missing in the BUILD directory)

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.
This commit is contained in:
malff/marcsql@weblab.(none) 2007-08-15 18:10:16 -06:00
commit c6a395af09
7 changed files with 82 additions and 12 deletions

9
BUILD/compile-amd64-gprof Executable file
View file

@ -0,0 +1,9 @@
#! /bin/sh
path=`dirname $0`
. "$path/SETUP.sh"
extra_flags="$amd64_cflags $gprof_compile_flags"
extra_configs="$amd64_configs $debug_configs $gprof_link_flags"
. "$path/FINISH.sh"