From 31415c8fc07ffea72e7c89cd181f7e2fbcc6f4fe Mon Sep 17 00:00:00 2001 From: Nishi Date: Tue, 12 May 2026 08:56:10 +0900 Subject: [PATCH] fix --- src/js/core.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/js/core.js b/src/js/core.js index f02f57c..4cca0c3 100644 --- a/src/js/core.js +++ b/src/js/core.js @@ -229,9 +229,9 @@ POSIXCompiler.prototype.link = function(target, files) { var c = ""; var cxx = target.sources.filter(pmake.isCxx); if(!cxx || cxx.length == 0) { - c = this.prefix + this.cc; + c = this.cc; } else { - c = this.prefix + this.cxx; + c = this.cxx; } function add_l(x) {