mirror of
https://github.com/bminor/binutils-gdb.git
synced 2025-12-26 01:07:52 +00:00
* emultempl/pe.em (gld_${EMULATION_NAME}_before_parse):
Change second (cmdline) arg to lang_add_entry to FALSE. (set_pe_subsystem): Change second arg to lang_add_entry to TRUE.
This commit is contained in:
@@ -1,3 +1,9 @@
|
||||
2003-08-07 Danny Smith <dannysmith@users.sourceforge.net>
|
||||
|
||||
* emultempl/pe.em (gld_${EMULATION_NAME}_before_parse):
|
||||
Change second (cmdline) arg to lang_add_entry to FALSE.
|
||||
(set_pe_subsystem): Change second arg to lang_add_entry to TRUE.
|
||||
|
||||
2003-08-05 Christian Groessler <chris@groessler.org>
|
||||
Jason Eckhardt <jle@rice.edu>
|
||||
|
||||
@@ -702,7 +708,7 @@
|
||||
|
||||
2003-03-18 Danny Smith <dannysmith@users.sourceforge.net>
|
||||
|
||||
* defilep.y (opt_base): If no number given, set to default
|
||||
* deffilep.y (opt_base): If no number given, set to default
|
||||
(-1), not 0.
|
||||
|
||||
2003-03-13 Danny Smith <dannysmith@users.sourceforge.net>
|
||||
|
||||
@@ -141,9 +141,9 @@ gld_${EMULATION_NAME}_before_parse (void)
|
||||
|
||||
#if (PE_DEF_SUBSYSTEM == 9) || (PE_DEF_SUBSYSTEM == 2)
|
||||
#if defined TARGET_IS_mipspe || defined TARGET_IS_armpe
|
||||
lang_add_entry ("WinMainCRTStartup", 1);
|
||||
lang_add_entry ("WinMainCRTStartup", FALSE);
|
||||
#else
|
||||
lang_add_entry ("_WinMainCRTStartup", 1);
|
||||
lang_add_entry ("_WinMainCRTStartup", FALSE);
|
||||
#endif
|
||||
#endif
|
||||
#endif
|
||||
@@ -439,7 +439,7 @@ set_pe_subsystem (void)
|
||||
entry = alc_entry;
|
||||
}
|
||||
|
||||
lang_add_entry (entry, 0);
|
||||
lang_add_entry (entry, TRUE);
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user