--memory-model model Set the memory model
--module Link as a module
--module-id id Specify a module id for the linker
- --no-std-lib Don't link standard runtime library
+ --no-std-lib Don't link the standard library
--o65-model model Override the o65 model
--obj file Link this object file
--obj-path path Specify an object file search path
<tag><tt>--no-std-lib</tt></tag>
- This option tells the cl65 to not include standard runtime library into the
- list of libraries.
+ This option tells the cl65 to not include the standard library into the list
+ of libraries.
CmdAddArg (&LD65, LD65.Files [I]);
}
- /* Add the standard runtime library if it is not disabled */
+ /* Add the standard library if it is not disabled */
if (!NoStdLib)
{
/* Determine which target library is needed */
" --memory-model model\t\tSet the memory model\n"
" --module\t\t\tLink as a module\n"
" --module-id id\t\tSpecify a module ID for the linker\n"
- " --no-std-lib\t\t\tDon't link standard runtime library\n"
+ " --no-std-lib\t\t\tDon't link the standard library\n"
" --o65-model model\t\tOverride the o65 model\n"
" --obj file\t\t\tLink this object file\n"
" --obj-path path\t\tSpecify an object file search path\n"
static void OptNoStdLib (const char* Opt attribute ((unused)),
const char* Arg attribute ((unused)))
-/* Disable standard runtime library */
+/* Disable the standard library */
{
NoStdLib = 1;
}