]> git.sur5r.net Git - cc65/commitdiff
cl65 now links against none.lib when using --target none
authorbauen1 <j2468h@gmail.com>
Thu, 4 Jan 2018 16:11:44 +0000 (17:11 +0100)
committerbauen1 <j2468h@gmail.com>
Thu, 4 Jan 2018 16:11:44 +0000 (17:11 +0100)
src/cl65/main.c

index 565f20b45126307b8e1f2600cdeeacaf534b9221..5a2103b242e221ece19d30729dd83f06f7d2e659 100644 (file)
@@ -380,19 +380,14 @@ static void CmdPrint (CmdDesc* Cmd, FILE* F)
 static void SetTargetFiles (void)
 /* Set the target system files */
 {
-    /* Determine the names of the target specific library file */
-    if (Target != TGT_NONE) {
-
-        /* Get a pointer to the system name and its length */
-        const char* TargetName = GetTargetName (Target);
-        unsigned    TargetNameLen = strlen (TargetName);
-
-        /* Set the library file */
-        TargetLib = xmalloc (TargetNameLen + 4 + 1);
-        memcpy (TargetLib, TargetName, TargetNameLen);
-        strcpy (TargetLib + TargetNameLen, ".lib");
-
-    }
+    /* Get a pointer to the system name and its length */
+    const char* TargetName = GetTargetName (Target);
+    unsigned    TargetNameLen = strlen (TargetName);
+
+    /* Set the library file */
+    TargetLib = xmalloc (TargetNameLen + 4 + 1);
+    memcpy (TargetLib, TargetName, TargetNameLen);
+    strcpy (TargetLib + TargetNameLen, ".lib");
 }