This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[patch] fix bootstrap/26999


Here's my submission for the regression hackathon for today. This seems to fix bootstrap/26999. I tested it with both --disable-libgomp and --disable-gcc. With the patch it bootstraps successfully and doesn't build libgomp.

Anything (or directories) I missed? OK for 4.2? Tested on x86-linux-gnu.

-eric

2006-08-25 Eric Christopher <echristo@apple.com>

	PR bootstrap/26999
	* configure.in: Only disable target directories.
	* configure: Regenerate.

Index: configure.in
===================================================================
--- configure.in	(revision 116453)
+++ configure.in	(working copy)
@@ -1311,7 +1311,14 @@ fi
 for dir in $configdirs $build_configdirs $target_configdirs ; do
   dirname=`echo $dir | sed -e s/target-//g -e s/build-//g -e s/-/_/g`
   if eval test x\${enable_${dirname}} "=" xno ; then
+    case "${dirname}" in
+      boehm-gc | libada | libgomp | libgfortran | libjava | libmudflap \
+      | libssp | zlib)
     noconfigdirs="$noconfigdirs $dir"
+        ;;
+      *)
+	;;
+    esac
   fi
 done
 

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]