From 5abf10e0495a2a68a02c5148b6a068ebfd18bb92 Mon Sep 17 00:00:00 2001 From: cuz Date: Tue, 1 Jun 2004 11:22:35 +0000 Subject: [PATCH] New options git-svn-id: svn://svn.cc65.org/cc65/trunk@3064 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- doc/cc65.sgml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/doc/cc65.sgml b/doc/cc65.sgml index d9030c078..97ee34a08 100644 --- a/doc/cc65.sgml +++ b/doc/cc65.sgml @@ -86,6 +86,7 @@ Long options: --data-name seg Set the name of the DATA segment --debug Debug mode --debug-info Add debug info to object file + --forget-inc-paths Forget include search paths --help Help (this text) --include-dir dir Set an include directory search path --register-space b Set space available for register variables @@ -96,6 +97,7 @@ Long options: --target sys Set the target system --verbose Increase verbosity --version Print the compiler version number + --writable-strings Make string literals writable --------------------------------------------------------------------------- @@ -168,6 +170,13 @@ Here is a description of all the command line options: is defined to the value "1". + --forget-inc-paths + + Forget the builtin include paths. This is most useful when building + customized C or runtime libraries, in which case the standard header + files should be ignored. + + -g, --debug-info This will cause the compiler to insert a --writable-strings + + Make string literals writable by placing them into the data segment instead + of the rodata segment. + + -Cl, --static-locals Use static storage for local variables instead of storage on the stack.