summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorwtc%google.com <devnull@localhost>2008-01-24 05:00:04 +0000
committerwtc%google.com <devnull@localhost>2008-01-24 05:00:04 +0000
commit308290a67a7136e70df568a1bc2aeadf8c10f575 (patch)
tree691115b7d20a8678fc4a4e13d5ef89bc11dbc749 /configure.in
parent5fdf30fc2561deda9aabd55e09734221a1aad96f (diff)
downloadnspr-hg-308290a67a7136e70df568a1bc2aeadf8c10f575.tar.gz
Bug 296878: disable the use of os_Linux_ppc.s for 64-bit PowerPC builds
because the assembly code crashes. Add nonexecutable stack directive to os_Linux_ppc.s. Modified files: configure.in configure _linux.h os_Linux_ppc.s
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in3
1 files changed, 2 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index 3e66a3bb..5355d1a4 100644
--- a/configure.in
+++ b/configure.in
@@ -1465,10 +1465,11 @@ tools are selected during the Xcode/Developer Tools installation.])
PR_MD_ASFILES=os_Linux_ppc.s
;;
powerpc64)
- PR_MD_ASFILES=os_Linux_ppc.s
if test -n "$USE_64"; then
CC="$CC -m64"
CXX="$CXX -m64"
+ else
+ PR_MD_ASFILES=os_Linux_ppc.s
fi
;;
m68k)