mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-11-25 21:19:54 +00:00
f2241121e3
* ldlang.h (lang_do_assignments): Ditto. * emultempl/netbsd.em (gld${EMULATION_NAME}_before_parse): Declare. * Makefile.am (ens32knbsd.c): Depend on netbsd.em. * Makefile.in: Regenerate.
14 lines
286 B
Plaintext
14 lines
286 B
Plaintext
LDEMUL_BEFORE_PARSE=gldnetbsd_before_parse
|
|
|
|
cat >>e${EMULATION_NAME}.c <<EOF
|
|
static void
|
|
gld${EMULATION_NAME}_before_parse (void);
|
|
|
|
static void
|
|
gldnetbsd_before_parse (void)
|
|
{
|
|
gld${EMULATION_NAME}_before_parse ();
|
|
link_info.common_skip_ar_aymbols = bfd_link_common_skip_text;
|
|
}
|
|
EOF
|