Removed the -Lp switch, place --dbgfile into help screen

git-svn-id: svn://svn.cc65.org/cc65/trunk@2318 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz
2003-08-15 09:19:57 +00:00
parent ccdd31b51e
commit 5422c6924a
4 changed files with 8 additions and 27 deletions

View File

@@ -94,7 +94,6 @@ static void Usage (void)
" -C name\t\tUse linker config file\n"
" -L path\t\tSpecify a library search path\n"
" -Ln name\t\tCreate a VICE label file\n"
" -Lp\t\t\tMark write protected segments as such (VICE)\n"
" -S addr\t\tSet the default start address\n"
" -V\t\t\tPrint the linker version\n"
" -h\t\t\tHelp (this text)\n"
@@ -107,6 +106,7 @@ static void Usage (void)
"Long options:\n"
" --cfg-path path\tSpecify a config file search path\n"
" --config name\t\tUse linker config file\n"
" --dbgfile name\t\tGenerate debug information\n"
" --dump-config name\tDump a builtin configuration\n"
" --help\t\tHelp (this text)\n"
" --lib file\t\tLink this library\n"
@@ -459,9 +459,8 @@ int main (int argc, char* argv [])
case 'L':
switch (Arg [2]) {
/* ## The first two are obsolete and will go */
/* ## The first one is obsolete and will go */
case 'n': LabelFileName = GetArg (&I, 3); break;
case 'p': WProtSegs = 1; break;
default: OptLibPath (Arg, GetArg (&I, 2)); break;
}
break;