Added the --force-import option also to the cl65 utility.
git-svn-id: svn://svn.cc65.org/cc65/trunk@4053 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
parent
ee6028993e
commit
1b40f00573
1 changed files with 11 additions and 2 deletions
|
@ -6,8 +6,8 @@
|
||||||
/* */
|
/* */
|
||||||
/* */
|
/* */
|
||||||
/* */
|
/* */
|
||||||
/* (C) 1999-2005, Ullrich von Bassewitz */
|
/* (C) 1999-2009, Ullrich von Bassewitz */
|
||||||
/* Römerstrasse 52 */
|
/* Roemerstrasse 52 */
|
||||||
/* D-70794 Filderstadt */
|
/* D-70794 Filderstadt */
|
||||||
/* EMail: uz@cc65.org */
|
/* EMail: uz@cc65.org */
|
||||||
/* */
|
/* */
|
||||||
|
@ -877,6 +877,14 @@ static void OptFeature (const char* Opt attribute ((unused)), const char* Arg)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
static void OptForceImport (const char* Opt attribute ((unused)), const char* Arg)
|
||||||
|
/* Emulation features for the assembler */
|
||||||
|
{
|
||||||
|
CmdAddArg2 (&LD65, "--force-import", Arg);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
static void OptForgetIncPaths (const char* Opt attribute ((unused)),
|
static void OptForgetIncPaths (const char* Opt attribute ((unused)),
|
||||||
const char* Arg attribute ((unused)))
|
const char* Arg attribute ((unused)))
|
||||||
/* Forget all currently defined include paths */
|
/* Forget all currently defined include paths */
|
||||||
|
@ -1164,6 +1172,7 @@ int main (int argc, char* argv [])
|
||||||
{ "--debug", 0, OptDebug },
|
{ "--debug", 0, OptDebug },
|
||||||
{ "--debug-info", 0, OptDebugInfo },
|
{ "--debug-info", 0, OptDebugInfo },
|
||||||
{ "--feature", 1, OptFeature },
|
{ "--feature", 1, OptFeature },
|
||||||
|
{ "--force-import", 1, OptForceImport },
|
||||||
{ "--forget-inc-paths", 0, OptForgetIncPaths },
|
{ "--forget-inc-paths", 0, OptForgetIncPaths },
|
||||||
{ "--help", 0, OptHelp },
|
{ "--help", 0, OptHelp },
|
||||||
{ "--include-dir", 1, OptIncludeDir },
|
{ "--include-dir", 1, OptIncludeDir },
|
||||||
|
|
Loading…
Add table
Reference in a new issue