diff options
author | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2002-07-27 22:55:54 +0000 |
---|---|---|
committer | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2002-07-27 22:55:54 +0000 |
commit | be7d5c40822438f0ff2fefbd9254c65b7382163e (patch) | |
tree | 567f7d6281ed787ef93cf7dba43333135fba2d14 | |
parent | 29b130eb2c418f305dbb5668a83e292641604894 (diff) | |
download | xine-lib-be7d5c40822438f0ff2fefbd9254c65b7382163e.tar.gz xine-lib-be7d5c40822438f0ff2fefbd9254c65b7382163e.tar.bz2 |
More fix about ppc compilation, due of Bill's investigations.
CVS patchset: 2357
CVS date: 2002/07/27 22:55:54
-rw-r--r-- | configure.in | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 13baf412c..66744a02f 100644 --- a/configure.in +++ b/configure.in @@ -782,13 +782,15 @@ case "$host_or_hostalias" in ppc-*-linux* | powerpc-*) CFLAGS="$CFLAGS -O3 -pipe -fomit-frame-pointer $m_wm $m_psb -fexpensive-optimizations $f_si $f_nsa -ffast-math -funroll-loops -funroll-all-loops -finline-functions" DEBUG_CFLAGS="$DEBUG_CFLAGS -O3" - ASFLAGS="" dnl avoid ppc compilation crash + dnl avoid ppc compilation crash + AS="$CC" AC_DEFINE(FPM_PPC) AC_DEFINE(ARCH_PPC) if test x$enable_altivec = xyes; then AC_DEFINE(ENABLE_ALTIVEC) CFLAGS="$CFLAGS -Wa,-m7400" + DEBUG_CFLAGS="$DEBUG_CFLAGS -Wa,-m7400" fi ;; |