| |||
| Home > fromelf command reference > --project=filename, --no_project | |||
Controls the loading of the specified project template file.
This option is deprecated.
--project=filename
Where is
the name of a project template file.filename
To use as
a default project file, set the filenameRVDS_PROJECT environment
variable to .filename
--no_project prevents the default project
template file specified by the environment variable RVDS_PROJECT from
being used.
Options from a project template file are only set when they do not conflict with options already set on the command-line. If an option from a project template file conflicts with an existing command-line option, the command-line option takes precedence.
Consider the following project template file:
<!-- suiteconf.cfg --> <suiteconf name="Platform Baseboard for ARM926EJ-S"> <tool name="fromelf"> <cmdline> --cpu=ARM926EJ-S --fpu=vfpv2 </cmdline> </tool> </suiteconf>
When the RVDS_PROJECT environment variable
is set to point to this file, the command:
fromelf foo.o
results in an actual command line of:
fromelf --cpu=ARM926EJ-S --fpu=vfpv2 foo.o