New option --bin-include-dir which is passed to the assembler.
git-svn-id: svn://svn.cc65.org/cc65/trunk@4661 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
@@ -69,6 +69,7 @@ Long options:
|
||||
--asm-args options Pass options to the assembler
|
||||
--asm-define sym[=v] Define an assembler symbol
|
||||
--asm-include-dir dir Set an assembler include directory
|
||||
--bin-include-dir dir Set an assembker binary include directory
|
||||
--bss-label name Define and export a BSS segment label
|
||||
--bss-name seg Set the name of the BSS segment
|
||||
--cfg-path path Specify a config file search path
|
||||
|
||||
@@ -699,6 +699,7 @@ static void Usage (void)
|
||||
" --asm-args options\t\tPass options to the assembler\n"
|
||||
" --asm-define sym[=v]\t\tDefine an assembler symbol\n"
|
||||
" --asm-include-dir dir\t\tSet an assembler include directory\n"
|
||||
" --bin-include-dir dir\t\tSet an assembker binary include directory\n"
|
||||
" --bss-label name\t\tDefine and export a BSS segment label\n"
|
||||
" --bss-name seg\t\tSet the name of the BSS segment\n"
|
||||
" --cfg-path path\t\tSpecify a config file search path\n"
|
||||
@@ -782,6 +783,14 @@ static void OptAsmIncludeDir (const char* Opt attribute ((unused)), const char*
|
||||
|
||||
|
||||
|
||||
static void OptBinIncludeDir (const char* Opt attribute ((unused)), const char* Arg)
|
||||
/* Binary include directory (assembler) */
|
||||
{
|
||||
CmdAddArg2 (&CA65, "--bin-include-dir", Arg);
|
||||
}
|
||||
|
||||
|
||||
|
||||
static void OptBssLabel (const char* Opt attribute ((unused)), const char* Arg)
|
||||
/* Handle the --bss-label option */
|
||||
{
|
||||
@@ -1213,6 +1222,7 @@ int main (int argc, char* argv [])
|
||||
{ "--asm-args", 1, OptAsmArgs },
|
||||
{ "--asm-define", 1, OptAsmDefine },
|
||||
{ "--asm-include-dir", 1, OptAsmIncludeDir },
|
||||
{ "--bin-include-dir", 1, OptBinIncludeDir },
|
||||
{ "--bss-label", 1, OptBssLabel },
|
||||
{ "--bss-name", 1, OptBssName },
|
||||
{ "--cfg-path", 1, OptCfgPath },
|
||||
|
||||
Reference in New Issue
Block a user