mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-08-06 14:49:38 +08:00
* script.cc (script_add_extern): Rewrite to use
add_symbol_reference.
This commit is contained in:
@ -2576,12 +2576,8 @@ yyerror(void* closurev, const char* message)
|
||||
extern "C" void
|
||||
script_add_extern(void* closurev, const char* name, size_t length)
|
||||
{
|
||||
// We treat exactly like -u NAME. FIXME: If it seems useful, we
|
||||
// could handle this after the command line has been read, by adding
|
||||
// entries to the symbol table directly.
|
||||
std::string arg("--undefined=");
|
||||
arg.append(name, length);
|
||||
script_parse_option(closurev, arg.c_str(), arg.size());
|
||||
Parser_closure* closure = static_cast<Parser_closure*>(closurev);
|
||||
closure->script_options()->add_symbol_reference(name, length);
|
||||
}
|
||||
|
||||
// Called by the bison parser to add a file to the link.
|
||||
|
Reference in New Issue
Block a user