* emultempl/pe.em [cygwin]: Do not merge rdata with v2
authorNick Clifton <nickc@redhat.com>
Mon, 29 Apr 2013 08:22:16 +0000 (08:22 +0000)
committerNick Clifton <nickc@redhat.com>
Mon, 29 Apr 2013 08:22:16 +0000 (08:22 +0000)
psuedo-relocs.

ld/ChangeLog
ld/emultempl/pe.em

index cd0edce3ba88ea23b0301f4c708b53953dd7c62a..5ba44bb8ea115fe1f52bdd7434e438cc6cd02dbb 100644 (file)
@@ -1,3 +1,8 @@
+2013-04-29  Yaakov Selkowitz  <yselkowitz@users.sourceforge.net>
+
+       * emultempl/pe.em [cygwin]: Do not merge rdata with v2
+       psuedo-relocs.
+
 2013-04-28  Thomas Schwinge  <thomas@codesourcery.com>
 
        * scripttempl/armbpabi.sc: Replace "source" usage with ".".
index 68049a72d69606006f77f30f7c574f9f78fd9ccc..7a11396f1286569463637ae5ddc2027286b37ce9 100644 (file)
@@ -8,9 +8,7 @@ fi
 rm -f e${EMULATION_NAME}.c
 (echo;echo;echo;echo;echo)>e${EMULATION_NAME}.c # there, now line numbers match ;-)
 fragment <<EOF
-/* Copyright 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
-   2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012
-   Free Software Foundation, Inc.
+/* Copyright 1995-2013 Free Software Foundation, Inc.
 
    This file is part of the GNU Binutils.
 
@@ -171,10 +169,13 @@ EOF
 
 # Cygwin no longer wants these noisy warnings.  Other PE
 # targets might like to consider adding themselves here.
+# See also the mail thread starting here for the reason why
+# merge_rdata defaults to 0 for cygwin:
+#  http://cygwin.com/ml/cygwin-apps/2013-04/msg00187.html
 case ${target} in
   *-*-cygwin*)
     default_auto_import=1
-    default_merge_rdata=1
+    default_merge_rdata=0
     ;;
   i[3-7]86-*-mingw* | x86_64-*-mingw*)
     default_auto_import=1
@@ -276,8 +277,9 @@ gld${EMULATION_NAME}_add_options
    int nrl ATTRIBUTE_UNUSED,
    struct option **really_longopts ATTRIBUTE_UNUSED)
 {
-  static const struct option xtra_long[] = {
-    /* PE options */
+  static const struct option xtra_long[] =
+  {
+    /* PE options.  */
     {"base-file", required_argument, NULL, OPTION_BASE_FILE},
     {"dll", no_argument, NULL, OPTION_DLL},
     {"file-alignment", required_argument, NULL, OPTION_FILE_ALIGNMENT},
This page took 0.030081 seconds and 4 git commands to generate.