From 96196f00e9f409f48506b72547979020c8d38d02 Mon Sep 17 00:00:00 2001
From: Oliver Schmidt
Date: Thu, 18 Oct 2018 13:22:26 +0200
Subject: [PATCH] Adjusted library name.
---
doc/cl65.sgml | 6 +++---
src/cl65/main.c | 6 +++---
2 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/doc/cl65.sgml b/doc/cl65.sgml
index a2413fe7a..647b1bdbd 100644
--- a/doc/cl65.sgml
+++ b/doc/cl65.sgml
@@ -103,7 +103,7 @@ Long options:
--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
@@ -188,8 +188,8 @@ There are a few remaining options that control the behaviour of cl65:
--no-std-lib
- 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.
diff --git a/src/cl65/main.c b/src/cl65/main.c
index c2f09323b..bcb97b148 100644
--- a/src/cl65/main.c
+++ b/src/cl65/main.c
@@ -497,7 +497,7 @@ static void Link (void)
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 */
@@ -816,7 +816,7 @@ static void Usage (void)
" --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"
@@ -1174,7 +1174,7 @@ static void OptModuleId (const char* Opt attribute ((unused)), const char* Arg)
static void OptNoStdLib (const char* Opt attribute ((unused)),
const char* Arg attribute ((unused)))
-/* Disable standard runtime library */
+/* Disable the standard library */
{
NoStdLib = 1;
}
--
2.39.5