diff options
author | Chris Faylor <me.cygwin2011@cgf.cx> | 2014-03-17 13:09:15 -0400 |
---|---|---|
committer | Chris Faylor <me.cygwin2011@cgf.cx> | 2014-03-17 13:19:49 -0400 |
commit | c712f1e3f711d0f3b694cdfcf4a965d8419fde94 (patch) | |
tree | 0bc60da8eec4a6956f93a5e8d36644be9ad1cf3d | |
parent | 1f5afe1cc03bb2cd50b75a21d491a349d7011ea1 (diff) | |
download | gdb-c712f1e3f711d0f3b694cdfcf4a965d8419fde94.zip gdb-c712f1e3f711d0f3b694cdfcf4a965d8419fde94.tar.gz gdb-c712f1e3f711d0f3b694cdfcf4a965d8419fde94.tar.bz2 |
2014-03-17 Christopher Faylor <me.cygwin2014@cgf.cx>
* Makefile.am: Use host version of windres.
* Makefile.in: Regenerate.
-rw-r--r-- | ld/ChangeLog | 15 | ||||
-rw-r--r-- | ld/Makefile.am | 2 | ||||
-rw-r--r-- | ld/Makefile.in | 2 |
3 files changed, 17 insertions, 2 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog index 9c728ae..af8924d 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,18 @@ +2014-03-17 Christopher Faylor <me.cygwin2014@cgf.cx> + + * Makefile.am: Use host version of windres. + * Makefile.in: Regenerate. + +2014-03-14 Christopher Faylor <me.cygwin2013@cgf.cx> + + * ld.texinfo: Document change in handling of --enable-auto-image-base. + * emultempl/pe.em (pe_auto_image_base): Set to default base. + (gld_${EMULATION_NAME}_list_options): Change usage message to reflect + optional --enable-auto-image-base argument. + (gld${EMULATION_NAME}_handle_option): Handle optional + --enable-auto-image-base argument. + (compute_dll_image_base): Eliminate constant. Use pe_auto_image_base. + 2014-03-14 Romain Geissler <romain.geissler@amadeus.com> Alan Modra <amodra@gmail.com> diff --git a/ld/Makefile.am b/ld/Makefile.am index fe674c4..e89a6c1 100644 --- a/ld/Makefile.am +++ b/ld/Makefile.am @@ -1927,7 +1927,7 @@ eshlelf64_nbsd.c: $(srcdir)/emulparams/shlelf64_nbsd.sh \ # Rule to create a manifest file for Cygwin and Mingw. default-manifest.o: $(srcdir)/emultempl/default-manifest.rc - ../binutils/windres -o $@ $< + ${WINDRES} -o $@ $< # We need this for automake to use YLWRAP. EXTRA_ld_new_SOURCES = deffilep.y ldlex.l diff --git a/ld/Makefile.in b/ld/Makefile.in index 46126f8..0c14694 100644 --- a/ld/Makefile.in +++ b/ld/Makefile.in @@ -3359,7 +3359,7 @@ eshlelf64_nbsd.c: $(srcdir)/emulparams/shlelf64_nbsd.sh \ # Rule to create a manifest file for Cygwin and Mingw. default-manifest.o: $(srcdir)/emultempl/default-manifest.rc - ../binutils/windres -o $@ $< + ${WINDRES} -o $@ $< check-DEJAGNU: site.exp srcroot=`cd $(srcdir) && pwd`; export srcroot; \ |