2007-09-21 09:20:01 +02:00
|
|
|
// parameters.cc -- general parameters for a link using gold
|
|
|
|
|
2010-02-12 04:23:26 +01:00
|
|
|
// Copyright 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
|
2007-09-22 23:02:10 +02:00
|
|
|
// Written by Ian Lance Taylor <iant@google.com>.
|
|
|
|
|
|
|
|
// This file is part of gold.
|
|
|
|
|
|
|
|
// This program is free software; you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation; either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with this program; if not, write to the Free Software
|
|
|
|
// Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
|
|
|
|
// MA 02110-1301, USA.
|
|
|
|
|
2007-09-21 09:20:01 +02:00
|
|
|
#include "gold.h"
|
|
|
|
|
2008-03-05 00:10:38 +01:00
|
|
|
#include "debug.h"
|
2007-09-21 09:20:01 +02:00
|
|
|
#include "options.h"
|
2007-12-01 07:34:12 +01:00
|
|
|
#include "target.h"
|
2008-02-28 01:18:24 +01:00
|
|
|
#include "target-select.h"
|
2007-09-21 09:20:01 +02:00
|
|
|
|
|
|
|
namespace gold
|
|
|
|
{
|
|
|
|
|
2010-02-12 04:23:26 +01:00
|
|
|
// Our local version of the variable, which is not const.
|
|
|
|
|
|
|
|
static Parameters static_parameters;
|
|
|
|
|
|
|
|
// The global variable.
|
|
|
|
|
|
|
|
const Parameters* parameters = &static_parameters;
|
|
|
|
|
|
|
|
// A helper class to set the target once.
|
|
|
|
|
|
|
|
class Set_parameters_target_once : public Once
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
Set_parameters_target_once(Parameters* parameters)
|
|
|
|
: parameters_(parameters)
|
|
|
|
{ }
|
|
|
|
|
|
|
|
protected:
|
|
|
|
void
|
|
|
|
do_run_once(void* arg)
|
|
|
|
{ this->parameters_->set_target_once(static_cast<Target*>(arg)); }
|
|
|
|
|
|
|
|
private:
|
|
|
|
Parameters* parameters_;
|
|
|
|
};
|
|
|
|
|
|
|
|
// We only need one Set_parameters_target_once.
|
|
|
|
|
|
|
|
static
|
|
|
|
Set_parameters_target_once set_parameters_target_once(&static_parameters);
|
|
|
|
|
|
|
|
// Class Parameters.
|
|
|
|
|
|
|
|
Parameters::Parameters()
|
|
|
|
: errors_(NULL), options_(NULL), target_(NULL),
|
|
|
|
doing_static_link_valid_(false), doing_static_link_(false),
|
|
|
|
debug_(0),
|
|
|
|
set_parameters_target_once_(&set_parameters_target_once)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2008-02-28 01:18:24 +01:00
|
|
|
void
|
2009-12-14 20:53:05 +01:00
|
|
|
Parameters::set_errors(Errors* errors)
|
2007-09-21 09:20:01 +02:00
|
|
|
{
|
2008-02-28 01:18:24 +01:00
|
|
|
gold_assert(this->errors_ == NULL);
|
2009-12-14 20:53:05 +01:00
|
|
|
this->errors_ = errors;
|
2007-10-27 02:29:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2009-12-14 20:53:05 +01:00
|
|
|
Parameters::set_options(const General_options* options)
|
2007-10-27 02:29:34 +02:00
|
|
|
{
|
2008-02-28 01:18:24 +01:00
|
|
|
gold_assert(!this->options_valid());
|
2009-12-14 20:53:05 +01:00
|
|
|
this->options_ = options;
|
2008-03-05 00:10:38 +01:00
|
|
|
// For speed, we convert the options() debug var from a string to an
|
|
|
|
// enum (from debug.h).
|
|
|
|
this->debug_ = debug_string_to_enum(this->options().debug());
|
2008-03-13 02:46:17 +01:00
|
|
|
// If --verbose is set, it acts as "--debug=files".
|
2009-12-14 20:53:05 +01:00
|
|
|
if (options->verbose())
|
2008-03-13 02:46:17 +01:00
|
|
|
this->debug_ |= DEBUG_FILES;
|
2010-04-07 23:42:22 +02:00
|
|
|
if (this->target_valid())
|
|
|
|
this->check_target_endianness();
|
2007-09-21 09:20:01 +02:00
|
|
|
}
|
|
|
|
|
2007-09-28 08:36:25 +02:00
|
|
|
void
|
2009-12-14 20:53:05 +01:00
|
|
|
Parameters::set_doing_static_link(bool doing_static_link)
|
2007-09-28 08:36:25 +02:00
|
|
|
{
|
2008-02-28 01:18:24 +01:00
|
|
|
gold_assert(!this->doing_static_link_valid_);
|
2009-12-14 20:53:05 +01:00
|
|
|
this->doing_static_link_ = doing_static_link;
|
2008-02-28 01:18:24 +01:00
|
|
|
this->doing_static_link_valid_ = true;
|
2007-09-28 08:36:25 +02:00
|
|
|
}
|
|
|
|
|
2007-09-26 09:01:35 +02:00
|
|
|
void
|
2009-12-14 20:53:05 +01:00
|
|
|
Parameters::set_target(Target* target)
|
2007-09-26 09:01:35 +02:00
|
|
|
{
|
2010-02-12 04:23:26 +01:00
|
|
|
this->set_parameters_target_once_->run_once(static_cast<void*>(target));
|
|
|
|
gold_assert(target == this->target_);
|
|
|
|
}
|
|
|
|
|
|
|
|
// This is called at most once.
|
|
|
|
|
|
|
|
void
|
|
|
|
Parameters::set_target_once(Target* target)
|
|
|
|
{
|
|
|
|
gold_assert(this->target_ == NULL);
|
|
|
|
this->target_ = target;
|
2010-04-07 23:42:22 +02:00
|
|
|
if (this->options_valid())
|
|
|
|
this->check_target_endianness();
|
2010-02-12 04:23:26 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Clear the target, for testing.
|
|
|
|
|
|
|
|
void
|
|
|
|
Parameters::clear_target()
|
|
|
|
{
|
|
|
|
this->target_ = NULL;
|
|
|
|
// We need a new Set_parameters_target_once so that we can set the
|
|
|
|
// target again.
|
|
|
|
this->set_parameters_target_once_ = new Set_parameters_target_once(this);
|
2007-09-26 09:01:35 +02:00
|
|
|
}
|
|
|
|
|
* readsyms.cc (Read_symbols::incompatible_warning): New function.
(Read_symbols::requeue): New function.
(Read_symbols::do_read_symbols): If make_elf_object fails because
the target type is not configured, and the file was searched for,
issue a warning and retry with the next directory.
(Add_symbols::run): If the file has an incompatible format, and
it was searched for, requeue the Read_symbols task. On error,
release the object.
* readsyms.h (class Read_symbols): Add dirindex_ field. Add
dirindex parameter to constructor. Change all callers. Declare
incompatible_warning and requeue.
(class Add_symbols): Add dirpath_, dirindex_, mapfile_,
input_argument_ and input_group_ fields. Add them to
constructor. Change all callers.
(class Read_script): Add dirindex_ field. Add it to constructor.
Change all callers.
* archive.cc (Archive::setup): Remove input_objects parameter.
Change all callers.
(Archive::get_file_and_offset): Likewise.
(Archive::read_all_symbols): Likewise.
(Archive::read_symbols): Likewise.
(Archive::get_elf_object_for_member): Remove input_objects
parameter. Add punconfigured parameter. Change all callers.
(Archive::add_symbols): Change return type to bool. Check return
value of include_member.
(Archive::include_all_members): Likewise.
(Archive::include_member): Change return type to bool. Return
false if first included object has incompatible target. Set
included_member_ field.
(Add_archive_symbols::run): If add_symbols returns false, requeue
Read_symbols task.
* archive.h (class Archive): Add included_member_ field.
Initialize it in constructor. Add input_file and searched_for
methods. Update declarations.
(class Add_archive_symbols): Add dirpath_, dirindex_, and
input_argument_ fields. Add them to constructor. Change all
callers.
* script.cc: Include "target-select.h".
(class Parser_closure): Add skip_on_incompatible_target_ and
found_incompatible_target_ fields. Add
skip_on_incompatible_target parameter to constructor. Change all
callers. Add methods skip_on_incompatible_target,
clear_skip_on_incompatible_target, found_incompatible_target, and
set_found_incompatible_target.
(read_input_script): Add dirindex parameter. Change all callers.
If parser finds an incompatible target, requeue Read_symbols
task.
(script_set_symbol): Clear skip_on_incompatible_target in
closure.
(script_add_assertion, script_parse_option): Likewise.
(script_start_sections, script_add_phdr): Likewise.
(script_check_output_format): New function.
* script.h (read_input_script): Update declaration.
* script-c.h (script_check_output_format): Declare.
* yyscript.y (file_cmd): Handle OUTPUT_FORMAT.
(ignore_cmd): Remove OUTPUT_FORMAT.
* fileread.cc (Input_file::Input_file): Add explicit this.
(Input_file::will_search_for): New function.
(Input_file::open): Add pindex parameter. Change all callers.
* fileread.h (class Input_file): Add input_file_argument method.
Declare will_search_for. Update declarations.
* object.cc (make_elf_object): Add punconfigured parameter.
Change all callers.
* object.h (class Object): Make input_file public. Add
searched_for method.
(make_elf_object): Update declaration.
* dirsearch.cc (Dirsearch::find): Add pindex parameter. Use it to
restart search.
* dirsearch.h (class Dirsearch): Update declaration.
* options.h (class General_options): Add --warn-search-mismatch.
* parameters.cc (Parameters::is_compatible_target): New function.
* parameters.h (class Parameters): Declare is_compatible_target.
* workqueue.cc (Workqueue::add_blocker): New function.
* workqueue.h (class Workqueue): Declare add_blocker.
2009-03-14 06:56:46 +01:00
|
|
|
// Return whether TARGET is compatible with the target we are using.
|
|
|
|
|
|
|
|
bool
|
2009-12-14 20:53:05 +01:00
|
|
|
Parameters::is_compatible_target(const Target* target) const
|
* readsyms.cc (Read_symbols::incompatible_warning): New function.
(Read_symbols::requeue): New function.
(Read_symbols::do_read_symbols): If make_elf_object fails because
the target type is not configured, and the file was searched for,
issue a warning and retry with the next directory.
(Add_symbols::run): If the file has an incompatible format, and
it was searched for, requeue the Read_symbols task. On error,
release the object.
* readsyms.h (class Read_symbols): Add dirindex_ field. Add
dirindex parameter to constructor. Change all callers. Declare
incompatible_warning and requeue.
(class Add_symbols): Add dirpath_, dirindex_, mapfile_,
input_argument_ and input_group_ fields. Add them to
constructor. Change all callers.
(class Read_script): Add dirindex_ field. Add it to constructor.
Change all callers.
* archive.cc (Archive::setup): Remove input_objects parameter.
Change all callers.
(Archive::get_file_and_offset): Likewise.
(Archive::read_all_symbols): Likewise.
(Archive::read_symbols): Likewise.
(Archive::get_elf_object_for_member): Remove input_objects
parameter. Add punconfigured parameter. Change all callers.
(Archive::add_symbols): Change return type to bool. Check return
value of include_member.
(Archive::include_all_members): Likewise.
(Archive::include_member): Change return type to bool. Return
false if first included object has incompatible target. Set
included_member_ field.
(Add_archive_symbols::run): If add_symbols returns false, requeue
Read_symbols task.
* archive.h (class Archive): Add included_member_ field.
Initialize it in constructor. Add input_file and searched_for
methods. Update declarations.
(class Add_archive_symbols): Add dirpath_, dirindex_, and
input_argument_ fields. Add them to constructor. Change all
callers.
* script.cc: Include "target-select.h".
(class Parser_closure): Add skip_on_incompatible_target_ and
found_incompatible_target_ fields. Add
skip_on_incompatible_target parameter to constructor. Change all
callers. Add methods skip_on_incompatible_target,
clear_skip_on_incompatible_target, found_incompatible_target, and
set_found_incompatible_target.
(read_input_script): Add dirindex parameter. Change all callers.
If parser finds an incompatible target, requeue Read_symbols
task.
(script_set_symbol): Clear skip_on_incompatible_target in
closure.
(script_add_assertion, script_parse_option): Likewise.
(script_start_sections, script_add_phdr): Likewise.
(script_check_output_format): New function.
* script.h (read_input_script): Update declaration.
* script-c.h (script_check_output_format): Declare.
* yyscript.y (file_cmd): Handle OUTPUT_FORMAT.
(ignore_cmd): Remove OUTPUT_FORMAT.
* fileread.cc (Input_file::Input_file): Add explicit this.
(Input_file::will_search_for): New function.
(Input_file::open): Add pindex parameter. Change all callers.
* fileread.h (class Input_file): Add input_file_argument method.
Declare will_search_for. Update declarations.
* object.cc (make_elf_object): Add punconfigured parameter.
Change all callers.
* object.h (class Object): Make input_file public. Add
searched_for method.
(make_elf_object): Update declaration.
* dirsearch.cc (Dirsearch::find): Add pindex parameter. Use it to
restart search.
* dirsearch.h (class Dirsearch): Update declaration.
* options.h (class General_options): Add --warn-search-mismatch.
* parameters.cc (Parameters::is_compatible_target): New function.
* parameters.h (class Parameters): Declare is_compatible_target.
* workqueue.cc (Workqueue::add_blocker): New function.
* workqueue.h (class Workqueue): Declare add_blocker.
2009-03-14 06:56:46 +01:00
|
|
|
{
|
|
|
|
if (this->target_ == NULL)
|
|
|
|
return true;
|
2009-12-14 20:53:05 +01:00
|
|
|
return target == this->target_;
|
* readsyms.cc (Read_symbols::incompatible_warning): New function.
(Read_symbols::requeue): New function.
(Read_symbols::do_read_symbols): If make_elf_object fails because
the target type is not configured, and the file was searched for,
issue a warning and retry with the next directory.
(Add_symbols::run): If the file has an incompatible format, and
it was searched for, requeue the Read_symbols task. On error,
release the object.
* readsyms.h (class Read_symbols): Add dirindex_ field. Add
dirindex parameter to constructor. Change all callers. Declare
incompatible_warning and requeue.
(class Add_symbols): Add dirpath_, dirindex_, mapfile_,
input_argument_ and input_group_ fields. Add them to
constructor. Change all callers.
(class Read_script): Add dirindex_ field. Add it to constructor.
Change all callers.
* archive.cc (Archive::setup): Remove input_objects parameter.
Change all callers.
(Archive::get_file_and_offset): Likewise.
(Archive::read_all_symbols): Likewise.
(Archive::read_symbols): Likewise.
(Archive::get_elf_object_for_member): Remove input_objects
parameter. Add punconfigured parameter. Change all callers.
(Archive::add_symbols): Change return type to bool. Check return
value of include_member.
(Archive::include_all_members): Likewise.
(Archive::include_member): Change return type to bool. Return
false if first included object has incompatible target. Set
included_member_ field.
(Add_archive_symbols::run): If add_symbols returns false, requeue
Read_symbols task.
* archive.h (class Archive): Add included_member_ field.
Initialize it in constructor. Add input_file and searched_for
methods. Update declarations.
(class Add_archive_symbols): Add dirpath_, dirindex_, and
input_argument_ fields. Add them to constructor. Change all
callers.
* script.cc: Include "target-select.h".
(class Parser_closure): Add skip_on_incompatible_target_ and
found_incompatible_target_ fields. Add
skip_on_incompatible_target parameter to constructor. Change all
callers. Add methods skip_on_incompatible_target,
clear_skip_on_incompatible_target, found_incompatible_target, and
set_found_incompatible_target.
(read_input_script): Add dirindex parameter. Change all callers.
If parser finds an incompatible target, requeue Read_symbols
task.
(script_set_symbol): Clear skip_on_incompatible_target in
closure.
(script_add_assertion, script_parse_option): Likewise.
(script_start_sections, script_add_phdr): Likewise.
(script_check_output_format): New function.
* script.h (read_input_script): Update declaration.
* script-c.h (script_check_output_format): Declare.
* yyscript.y (file_cmd): Handle OUTPUT_FORMAT.
(ignore_cmd): Remove OUTPUT_FORMAT.
* fileread.cc (Input_file::Input_file): Add explicit this.
(Input_file::will_search_for): New function.
(Input_file::open): Add pindex parameter. Change all callers.
* fileread.h (class Input_file): Add input_file_argument method.
Declare will_search_for. Update declarations.
* object.cc (make_elf_object): Add punconfigured parameter.
Change all callers.
* object.h (class Object): Make input_file public. Add
searched_for method.
(make_elf_object): Update declaration.
* dirsearch.cc (Dirsearch::find): Add pindex parameter. Use it to
restart search.
* dirsearch.h (class Dirsearch): Update declaration.
* options.h (class General_options): Add --warn-search-mismatch.
* parameters.cc (Parameters::is_compatible_target): New function.
* parameters.h (class Parameters): Declare is_compatible_target.
* workqueue.cc (Workqueue::add_blocker): New function.
* workqueue.h (class Workqueue): Declare add_blocker.
2009-03-14 06:56:46 +01:00
|
|
|
}
|
|
|
|
|
2008-02-28 01:18:24 +01:00
|
|
|
Parameters::Target_size_endianness
|
|
|
|
Parameters::size_and_endianness() const
|
2007-10-27 02:29:34 +02:00
|
|
|
{
|
2008-02-28 01:18:24 +01:00
|
|
|
if (this->target().get_size() == 32)
|
|
|
|
{
|
|
|
|
if (!this->target().is_big_endian())
|
|
|
|
{
|
|
|
|
#ifdef HAVE_TARGET_32_LITTLE
|
|
|
|
return TARGET_32_LITTLE;
|
|
|
|
#else
|
|
|
|
gold_unreachable();
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
#ifdef HAVE_TARGET_32_BIG
|
|
|
|
return TARGET_32_BIG;
|
|
|
|
#else
|
|
|
|
gold_unreachable();
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (parameters->target().get_size() == 64)
|
|
|
|
{
|
|
|
|
if (!parameters->target().is_big_endian())
|
|
|
|
{
|
|
|
|
#ifdef HAVE_TARGET_64_LITTLE
|
|
|
|
return TARGET_64_LITTLE;
|
|
|
|
#else
|
|
|
|
gold_unreachable();
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
#ifdef HAVE_TARGET_64_BIG
|
|
|
|
return TARGET_64_BIG;
|
|
|
|
#else
|
|
|
|
gold_unreachable();
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
gold_unreachable();
|
2007-10-27 02:29:34 +02:00
|
|
|
}
|
|
|
|
|
2010-04-07 23:42:22 +02:00
|
|
|
// If output endianness is specified in command line, check that it does
|
|
|
|
// not conflict with the target.
|
|
|
|
|
|
|
|
void
|
|
|
|
Parameters::check_target_endianness()
|
|
|
|
{
|
|
|
|
General_options::Endianness endianness = this->options().endianness();
|
|
|
|
if (endianness != General_options::ENDIANNESS_NOT_SET)
|
|
|
|
{
|
|
|
|
bool big_endian;
|
|
|
|
if (endianness == General_options::ENDIANNESS_BIG)
|
|
|
|
big_endian = true;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
gold_assert(endianness == General_options::ENDIANNESS_LITTLE);
|
|
|
|
big_endian = false;;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this->target().is_big_endian() != big_endian)
|
|
|
|
gold_error(_("input file does not match -EB/EL option"));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-09-28 08:36:25 +02:00
|
|
|
void
|
2008-02-28 01:18:24 +01:00
|
|
|
set_parameters_errors(Errors* errors)
|
|
|
|
{ static_parameters.set_errors(errors); }
|
2007-09-28 08:36:25 +02:00
|
|
|
|
2008-02-28 01:18:24 +01:00
|
|
|
void
|
|
|
|
set_parameters_options(const General_options* options)
|
|
|
|
{ static_parameters.set_options(options); }
|
2007-09-28 08:36:25 +02:00
|
|
|
|
2007-09-26 09:01:35 +02:00
|
|
|
void
|
2009-10-01 00:21:13 +02:00
|
|
|
set_parameters_target(Target* target)
|
2010-02-03 06:36:55 +01:00
|
|
|
{
|
|
|
|
static_parameters.set_target(target);
|
|
|
|
target->select_as_default_target();
|
|
|
|
}
|
2008-02-28 01:18:24 +01:00
|
|
|
|
|
|
|
void
|
|
|
|
set_parameters_doing_static_link(bool doing_static_link)
|
|
|
|
{ static_parameters.set_doing_static_link(doing_static_link); }
|
2007-09-21 09:20:01 +02:00
|
|
|
|
2009-10-01 00:21:13 +02:00
|
|
|
// Force the target to be valid by using the default. Use the
|
|
|
|
// --oformat option is set; this supports the x86_64 kernel build,
|
|
|
|
// which converts a binary file to an object file using -r --format
|
|
|
|
// binary --oformat elf32-i386 foo.o. Otherwise use the configured
|
|
|
|
// default.
|
|
|
|
|
|
|
|
void
|
|
|
|
parameters_force_valid_target()
|
|
|
|
{
|
|
|
|
if (parameters->target_valid())
|
|
|
|
return;
|
|
|
|
|
|
|
|
gold_assert(parameters->options_valid());
|
|
|
|
if (parameters->options().user_set_oformat())
|
|
|
|
{
|
|
|
|
Target* target = select_target_by_name(parameters->options().oformat());
|
|
|
|
if (target != NULL)
|
|
|
|
{
|
|
|
|
set_parameters_target(target);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
gold_error(_("unrecognized output format %s"),
|
|
|
|
parameters->options().oformat());
|
|
|
|
}
|
|
|
|
|
|
|
|
// The GOLD_DEFAULT_xx macros are defined by the configure script.
|
2010-04-07 23:42:22 +02:00
|
|
|
bool is_big_endian;
|
|
|
|
General_options::Endianness endianness = parameters->options().endianness();
|
|
|
|
if (endianness == General_options::ENDIANNESS_BIG)
|
|
|
|
is_big_endian = true;
|
|
|
|
else if (endianness == General_options::ENDIANNESS_LITTLE)
|
|
|
|
is_big_endian = false;
|
|
|
|
else
|
|
|
|
is_big_endian = GOLD_DEFAULT_BIG_ENDIAN;
|
|
|
|
|
2009-10-01 00:21:13 +02:00
|
|
|
Target* target = select_target(elfcpp::GOLD_DEFAULT_MACHINE,
|
|
|
|
GOLD_DEFAULT_SIZE,
|
2010-04-07 23:42:22 +02:00
|
|
|
is_big_endian,
|
2009-10-01 00:21:13 +02:00
|
|
|
elfcpp::GOLD_DEFAULT_OSABI,
|
|
|
|
0);
|
|
|
|
gold_assert(target != NULL);
|
|
|
|
set_parameters_target(target);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Clear the current target, for testing.
|
|
|
|
|
|
|
|
void
|
|
|
|
parameters_clear_target()
|
|
|
|
{
|
|
|
|
static_parameters.clear_target();
|
|
|
|
}
|
|
|
|
|
2007-09-21 09:20:01 +02:00
|
|
|
} // End namespace gold.
|