From: Ian Lance Taylor Date: Fri, 26 Oct 2007 18:03:24 +0000 (+0000) Subject: From Craig Silverstein: Minimal --script implementation. X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=5d57def3b3678509d68fad4114ef407b2ddc7901;p=deliverable%2Fbinutils-gdb.git From Craig Silverstein: Minimal --script implementation. --- diff --git a/gold/options.cc b/gold/options.cc index 1e4b90e1d4..9e5e270845 100644 --- a/gold/options.cc +++ b/gold/options.cc @@ -377,6 +377,9 @@ options::Command_line_options::options[] = NULL, TWO_DASHES, &General_options::set_stats), GENERAL_ARG('\0', "sysroot", N_("Set target system root directory"), N_("--sysroot DIR"), TWO_DASHES, &General_options::set_sysroot), + GENERAL_ARG('T', "script", N_("Read linker script"), + N_("-T FILE, --script FILE"), TWO_DASHES, + &General_options::set_script), GENERAL_ARG('\0', "Ttext", N_("Set the address of the .text section"), N_("-Ttext ADDRESS"), ONE_DASH, &General_options::set_text_segment_address), diff --git a/gold/options.h b/gold/options.h index dad1c90180..e3d5c26615 100644 --- a/gold/options.h +++ b/gold/options.h @@ -316,6 +316,14 @@ class General_options set_static() { this->is_static_ = true; } + void + set_script(const char* arg) + { + fprintf(stderr, _("%s: cannot parse %s: -T/--script not yet supported\n"), + program_name, arg); + ::exit(1); + } + void set_stats() { this->print_stats_ = true; }