Skip to content
Snippets Groups Projects
Commit 44cb549c authored by Yang Sheng's avatar Yang Sheng
Browse files

Branch b1_8_gate

b=16437
i=cliff.white, brian

Enable the '-m64' flag for powerpc64 patchless build.
parent 228e1256
No related branches found
No related tags found
No related merge requests found
...@@ -13,7 +13,12 @@ set -e ...@@ -13,7 +13,12 @@ set -e
AR=/usr/bin/ar AR=/usr/bin/ar
# see http://osdir.com/ml/gmane.comp.gnu.binutils.bugs/2006-01/msg00016.php # see http://osdir.com/ml/gmane.comp.gnu.binutils.bugs/2006-01/msg00016.php
LD=gcc ppc64_CPU=`uname -p`
if [ ${ppc64_CPU} == "ppc64" ]; then
LD="gcc -m64"
else
LD="gcc"
fi
RANLIB=/usr/bin/ranlib RANLIB=/usr/bin/ranlib
CWD=`pwd` CWD=`pwd`
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment