| |||
| Home > armar command reference > --project=filename, --no_project | |||
Instructs the compiler to load 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="armar"> <cmdline> -c -v </cmdline> </tool> </suiteconf>
When the RVDS_PROJECT environment variable
is set to point to this file, the command:
armar mylib.a foo.o
results in an the following command line:
armar -c -v mylib.a foo.o