mirror of
https://github.com/cc65/cc65.git
synced 2024-12-22 12:30:41 +00:00
New options
git-svn-id: svn://svn.cc65.org/cc65/trunk@3064 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
parent
efdd68e735
commit
5abf10e049
@ -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.
|
||||
|
Loading…
Reference in New Issue
Block a user