diff options
author | unknown <kent@mysql.com> | 2005-02-07 13:27:44 +0100 |
---|---|---|
committer | unknown <kent@mysql.com> | 2005-02-07 13:27:44 +0100 |
commit | 8602ef9328999ee6a49c93f249ec3cee178736ab (patch) | |
tree | fa02429a09b903d3123f7a6c847e9a0da391882d /BUILD/compile-solaris-sparc-purify | |
parent | 5b3d102f15d515e2268087c0e51ebaaa67b03dbc (diff) | |
parent | f3f2ec2f91abc1c6a6486e5ca4f6e2fdbe20343d (diff) | |
download | mariadb-git-8602ef9328999ee6a49c93f249ec3cee178736ab.tar.gz |
Merge mysql.com:/Users/kent/mysql/bk/mysql-4.1-perl
into mysql.com:/Users/kent/mysql/bk/mysql-5.0-compile
BUILD/compile-solaris-sparc-purify:
Auto merged
Diffstat (limited to 'BUILD/compile-solaris-sparc-purify')
-rwxr-xr-x | BUILD/compile-solaris-sparc-purify | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/BUILD/compile-solaris-sparc-purify b/BUILD/compile-solaris-sparc-purify index dd9ed2f7292..41ecd4ed530 100755 --- a/BUILD/compile-solaris-sparc-purify +++ b/BUILD/compile-solaris-sparc-purify @@ -60,7 +60,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 @@ -75,17 +75,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 |