ld/ChangeLog

* emultempl/pe.em (gld_${EMULATION_NAME}_before_parse):  Set
	default state of auto-import flag based on $target.

ld/testsuite/ChangeLog

	* ld-pe/pe.exp:  Disable auto-import when linking on Cygwin.
This commit is contained in:
Dave Korn 2009-02-27 19:01:57 +00:00
parent a2f63f5efa
commit 5b9c60272e
4 changed files with 29 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2009-02-27 Dave Korn <dave.korn.cygwin@gmail.com>
* emultempl/pe.em (gld_${EMULATION_NAME}_before_parse): Set
default state of auto-import flag based on $target.
2009-02-24 Joseph Myers <joseph@codesourcery.com>
* ld.texinfo (ARM): Document changed meaning of --stub-group-size.

View File

@ -145,7 +145,21 @@ gld_${EMULATION_NAME}_before_parse (void)
#ifdef DLL_SUPPORT
config.dynamic_link = TRUE;
config.has_shared = 1;
link_info.pei386_auto_import = -1;
EOF
# Cygwin no longer wants these noisy warnings. Other PE
# targets might like to consider adding themselves here.
case ${target} in
*-*-cygwin*)
default_auto_import=1
;;
*)
default_auto_import=-1
;;
esac
fragment <<EOF
link_info.pei386_auto_import = ${default_auto_import};
link_info.pei386_runtime_pseudo_reloc = 1; /* Use by default version 1. */
#if (PE_DEF_SUBSYSTEM == 9) || (PE_DEF_SUBSYSTEM == 2)

View File

@ -1,3 +1,7 @@
2009-02-27 Dave Korn <dave.korn.cygwin@gmail.com>
* ld-pe/pe.exp: Disable auto-import when linking on Cygwin.
2009-02-26 Christophe Lyon <christophe.lyon@st.com>
* ld-arm/arm-elf.exp: Add 3 tests for the 3 new stubs.

View File

@ -34,6 +34,11 @@ if {[istarget x86_64-*-mingw*] } {
{".secrel32" "" "" {secrel1.s secrel2.s}
{{objdump -s secrel_64.d}} "secrel.x"}
}
} elseif {[istarget i*86-*-cygwin*] } {
set pe_tests {
{".secrel32" "--disable-auto-import" "" {secrel1.s secrel2.s}
{{objdump -s secrel.d}} "secrel.x"}
}
} else {
set pe_tests {
{".secrel32" "" "" {secrel1.s secrel2.s}