mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 20:42:30 +01:00
compile-solaris-sparc-purify:
Set CCLD as well
This commit is contained in:
parent
3dde8baa4e
commit
70c6de976b
1 changed files with 4 additions and 4 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue