summaryrefslogtreecommitdiff
path: root/BUILD/compile-solaris-sparc-purify
diff options
context:
space:
mode:
authorunknown <kent@mysql.com>2005-02-07 13:25:03 +0100
committerunknown <kent@mysql.com>2005-02-07 13:25:03 +0100
commitf3f2ec2f91abc1c6a6486e5ca4f6e2fdbe20343d (patch)
tree62fabc3e83f747a8ca28bdfd05572aabd6224978 /BUILD/compile-solaris-sparc-purify
parent7eedc24466c6953f4a4e8142c8b87b862933e5f8 (diff)
downloadmariadb-git-f3f2ec2f91abc1c6a6486e5ca4f6e2fdbe20343d.tar.gz
compile-solaris-sparc-purify:
Set CCLD as well BUILD/compile-solaris-sparc-purify: Set CCLD as well
Diffstat (limited to 'BUILD/compile-solaris-sparc-purify')
-rwxr-xr-xBUILD/compile-solaris-sparc-purify8
1 files changed, 4 insertions, 4 deletions
diff --git a/BUILD/compile-solaris-sparc-purify b/BUILD/compile-solaris-sparc-purify
index 0e530f75b60..5f5ba81396f 100755
--- a/BUILD/compile-solaris-sparc-purify
+++ b/BUILD/compile-solaris-sparc-purify
@@ -61,7 +61,7 @@ purifying_binaries ()
if [ -n "$cxxfilt" ] ; then
opts="$opts -demangle-program=$cxxfilt"
fi
- opts="$opts -best-effort g++"
+ opts="$opts -best-effort"
back=`pwd`
cd $dir
@@ -76,17 +76,17 @@ purifying_binaries ()
fi
if [ -n "$mode" -a $mode = purify ] ; then
- gmake CXXLD="purify $opts" $target
+ gmake CCLD="purify $opts gcc" CXXLD="purify $opts g++" $target
mv $binary $binary-purify
fi
if [ -n "$mode" -a $mode = quantify ] ; then
- gmake CXXLD="quantify $opts" $target
+ gmake CCLD="quantify $opts gcc" CXXLD="quantify $opts g++" $target
mv $binary $binary-quantify
fi
if [ -n "$mode" -a $mode = purecov ] ; then
- gmake CXXLD="purecov $opts" $target
+ gmake CCLD="purecov $opts gcc" CXXLD="purecov $opts g++" $target
mv $binary $binary-purecov
fi