Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoseph Myers <joseph@codesourcery.com>2010-03-23 17:30:59 +0300
committerJoseph Myers <joseph@codesourcery.com>2010-03-23 17:30:59 +0300
commit105d67cb7e7e57236d5351695db622f4fc80d7b7 (patch)
tree5c083c6e0d5aa687831a574a28839e1462746bd1
parent8afe7566a05e29b737b205ae92b15f82007924a5 (diff)
Merge from gcc:
2010-03-19 Jack Howarth <howarth@bromo.med.uc.edu> PR ada/42554 * configure.ac: Only pass -c to ranlib for darwin9 and earlier. * configure: Regenerate.
-rw-r--r--ChangeLog8
-rwxr-xr-xconfigure4
-rw-r--r--configure.ac4
3 files changed, 12 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 56fcc6c3d..ad208a1fe 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,13 @@
2010-03-23 Joseph Myers <joseph@codesourcery.com>
+ Merge from gcc:
+ 2010-03-19 Jack Howarth <howarth@bromo.med.uc.edu>
+ PR ada/42554
+ * configure.ac: Only pass -c to ranlib for darwin9 and earlier.
+ * configure: Regenerate.
+
+2010-03-23 Joseph Myers <joseph@codesourcery.com>
+
* config.sub: Update to version 2010-03-22.
* config.guess: Update to version 2009-12-30.
diff --git a/configure b/configure
index f3212128d..508d95896 100755
--- a/configure
+++ b/configure
@@ -7292,8 +7292,8 @@ case "${target}" in
extra_arflags_for_target=" -X32_64"
extra_nmflags_for_target=" -B -X32_64"
;;
- *-*-darwin*)
- # ranlib from Darwin requires the -c flag to look at common symbols.
+ *-*-darwin[3-9]*)
+ # ranlib before Darwin10 requires the -c flag to look at common symbols.
extra_ranlibflags_for_target=" -c"
;;
mips*-*-pe | sh*-*-pe | *arm-wince-pe)
diff --git a/configure.ac b/configure.ac
index 92f3a9062..a5d75ee71 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2405,8 +2405,8 @@ case "${target}" in
extra_arflags_for_target=" -X32_64"
extra_nmflags_for_target=" -B -X32_64"
;;
- *-*-darwin*)
- # ranlib from Darwin requires the -c flag to look at common symbols.
+ *-*-darwin[[3-9]]*)
+ # ranlib before Darwin10 requires the -c flag to look at common symbols.
extra_ranlibflags_for_target=" -c"
;;
mips*-*-pe | sh*-*-pe | *arm-wince-pe)