~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to BUILD/compile-amd64-gcov

  • Committer: Stewart Smith
  • Date: 2008-06-30 05:33:25 UTC
  • mfrom: (12.2.8 drizzle)
  • mto: This revision was merged to the branch mainline in revision 19.
  • Revision ID: stewart@flamingspork.com-20080630053325-mwrv6bjaufcpvj8n
merge my work

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#! /bin/sh
2
 
 
3
 
path=`dirname $0`
4
 
. "$path/SETUP.sh"
5
 
 
6
 
# Need to disable ccache, or we loose the gcov-needed compiler output files.
7
 
CCACHE_DISABLE=1
8
 
export CCACHE_DISABLE
9
 
 
10
 
export LDFLAGS="$gcov_link_flags"
11
 
 
12
 
extra_flags="$amd64_cflags $debug_cflags $max_cflags $gcov_compile_flags"
13
 
c_warnings="$c_warnings $debug_extra_warnings"
14
 
cxx_warnings="$cxx_warnings $debug_extra_warnings"
15
 
extra_configs="$amd64_configs $debug_configs $gcov_configs $max_configs"
16
 
 
17
 
. "$path/FINISH.sh"