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

Branch b1_6

b=16437
i=cliff.white, brian

Enable the '-m64' flag for powerpc64 patchless build.
parent a9eeeb0e
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