This is the mail archive of the libstdc++@gcc.gnu.org mailing list for the libstdc++ 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]

[v3, 3.4 & HEAD] set cpu_include_dir for mips*-*-linux* targets, update baseline file


The mips*-*-linux* targets are currently recognised as "generic".
This seems to be wrong, as there is an old mips-linux-gnu baseline
file. The following patch explicitely overwrites the configuration for
the mips*-*-linux* in the last case statement.

Not appending the baseline diff here.

Currently running the libstdc++ testsuite. Ok to checkin, provided
that there are no regressions?

	Matthias


2004-08-24  Matthias Klose  <doko@debian.org>

	* configure.host: explicitly set cpu_include_dir, atomicity_dir, abi_baseline_pair
	for mips*-*-linux* targets. Sort OS/CPU case statement.
	* config/abi/mips-linux-gnu/baseline_symbols.txt: Update to 3.4.0.


Index: configure.host
===================================================================
RCS file: /cvs/gcc/gcc/libstdc++-v3/configure.host,v
retrieving revision 1.21.6.2
diff -u -r1.21.6.2 configure.host
--- configure.host	18 Mar 2004 17:36:12 -0000	1.21.6.2
+++ configure.host	24 Aug 2004 19:56:56 -0000
@@ -221,12 +221,6 @@
 # Set any OS-dependent and CPU-dependent bits.
 # THIS TABLE IS SORTED.  KEEP IT THAT WAY.
 case "${host}" in
-  mips*-*-linux*)
-    atomicity_dir="cpu/mips"
-    ;;
-  x86_64-*-linux*)
-    abi_baseline_pair="x86_64-linux-gnu"
-    ;;
   alpha*-*-freebsd5*)
     abi_baseline_pair="alpha-freebsd5"
     ;;
@@ -236,7 +230,15 @@
   i*86-*-freebsd5*)
     abi_baseline_pair="i386-freebsd5"
     ;;
+  mips*-*-linux*)
+    cpu_include_dir="cpu/mips"
+    atomicity_dir="cpu/mips"
+    abi_baseline_pair="mips-linux-gnu"
+    ;;
   sparc*-*-freebsd5*)
     abi_baseline_pair="sparc-freebsd5"
     ;;
+  x86_64-*-linux*)
+    abi_baseline_pair="x86_64-linux-gnu"
+    ;;
 esac


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