Commit 70c6de97 authored by kent@mysql.com's avatar kent@mysql.com

compile-solaris-sparc-purify:

  Set CCLD as well
parent 3dde8baa
...@@ -61,7 +61,7 @@ purifying_binaries () ...@@ -61,7 +61,7 @@ purifying_binaries ()
if [ -n "$cxxfilt" ] ; then if [ -n "$cxxfilt" ] ; then
opts="$opts -demangle-program=$cxxfilt" opts="$opts -demangle-program=$cxxfilt"
fi fi
opts="$opts -best-effort g++" opts="$opts -best-effort"
back=`pwd` back=`pwd`
cd $dir cd $dir
...@@ -76,17 +76,17 @@ purifying_binaries () ...@@ -76,17 +76,17 @@ purifying_binaries ()
fi fi
if [ -n "$mode" -a $mode = purify ] ; then 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 mv $binary $binary-purify
fi fi
if [ -n "$mode" -a $mode = quantify ] ; then 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 mv $binary $binary-quantify
fi fi
if [ -n "$mode" -a $mode = purecov ] ; then 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 mv $binary $binary-purecov
fi fi
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment