]> git.sur5r.net Git - cc65/commitdiff
New options
authorcuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Tue, 1 Jun 2004 11:22:35 +0000 (11:22 +0000)
committercuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Tue, 1 Jun 2004 11:22:35 +0000 (11:22 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@3064 b7a2c559-68d2-44c3-8de9-860c34a00d81

doc/cc65.sgml

index d9030c078705245def5db2d7e5f409f0ea5a4089..97ee34a0832b42328ecd1982f081c8ea02fc415f 100644 (file)
@@ -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
 ---------------------------------------------------------------------------
 </verb></tscreen>
 
@@ -168,6 +170,13 @@ Here is a description of all the command line options:
   is defined to the value "1".
 
 
+  <tag><tt>--forget-inc-paths</tt></tag>
+
+  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.
+
+
   <tag><tt>-g, --debug-info</tt></tag>
 
   This will cause the compiler to insert a <tt/.DEBUGINFO/ command into the
@@ -257,6 +266,12 @@ Here is a description of all the command line options:
   or warnings are encountered.
 
 
+  <tag><tt>--writable-strings</tt></tag>
+
+  Make string literals writable by placing them into the data segment instead
+  of the rodata segment.
+
+
   <tag><tt>-Cl, --static-locals</tt></tag>
 
   Use static storage for local variables instead of storage on the stack.