Author: michaelld
Date: 2007-03-06 08:57:34 -0700 (Tue, 06 Mar 2007)
New Revision: 4722
Modified:
gnuradio/branches/developers/michaelld/t141/configure.ac
Log:
Specific fix for ticket:141 for PPC-OSX only; leave Intel-OSX alone.
Modified: gnuradio/branches/developers/michaelld/t141/configure.ac
===================================================================
--- gnuradio/branches/developers/michaelld/t141/configure.ac 2007-03-06
12:44:48 UTC (rev 4721)
+++ gnuradio/branches/developers/michaelld/t141/configure.ac 2007-03-06
15:57:34 UTC (rev 4722)
@@ -51,8 +51,12 @@
if test "$GXX" = yes; then
case "$host_os" in
darwin*)
- # "-O1" breaks PPC-OSX for some reason
- swig_CXXFLAGS="-g -O2"
+ if test "$host_cpu" = i386; then
+ swig_CXXFLAGS="-g1 -O1"
+ else
+ # "-O1" breaks PPC-OSX for some reason
+ swig_CXXFLAGS="-g1 -O2"
+ fi
;;
*)
swig_CXXFLAGS="-g1 -O1"
_______________________________________________
Commit-gnuradio mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/commit-gnuradio