Fix testsuite ld_simple_link_defsyms for windows targets

* lib/ld-lib.exp (ld_simple_link_defsyms): Provide both __main
	and ___main for windows targets.
This commit is contained in:
Alan Modra
2014-08-29 10:27:44 +09:30
parent 53e989de26
commit 5a1431e66e
2 changed files with 7 additions and 2 deletions
ld/testsuite

@ -1,3 +1,8 @@
2014-08-29 Alan Modra <amodra@gmail.com>
* lib/ld-lib.exp (ld_simple_link_defsyms): Provide both __main
and ___main for windows targets.
2014-08-27 H.J. Lu <hongjiu.lu@intel.com> 2014-08-27 H.J. Lu <hongjiu.lu@intel.com>
PR ld/17306 PR ld/17306

@ -410,9 +410,9 @@ proc ld_simple_link_defsyms {} {
append flags " --defsym __gccmain=0" append flags " --defsym __gccmain=0"
} }
# Windows targets need __main, prefixed with underscore. # Windows targets need __main, some prefixed with underscore.
if {[istarget *-*-cygwin* ] || [istarget *-*-mingw*]} { if {[istarget *-*-cygwin* ] || [istarget *-*-mingw*]} {
append flags " --defsym ___main=0" append flags " --defsym __main=0 --defsym ___main=0"
} }
# PowerPC EABI code calls __eabi. # PowerPC EABI code calls __eabi.