From 549630e83e6ba376a3e2dc9184865d0a34caedbd Mon Sep 17 00:00:00 2001 From: tianfenghan Date: Sat, 30 May 2026 15:45:23 +0800 Subject: [PATCH] =?UTF-8?q?fix(build):=20=E4=BF=AE=E6=AD=A3=E7=BC=96?= =?UTF-8?q?=E8=AF=91=E5=99=A8=E5=85=A5=E5=8F=A3=E6=96=87=E4=BB=B6=E8=B7=AF?= =?UTF-8?q?=E5=BE=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 将 require 语句从 compiler-build.php 更改为 compiler.php - 确保正确的编译器主文件被加载执行 --- bin/compiler.php | 2 +- src/{compiler-build.php => compiler.php} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename src/{compiler-build.php => compiler.php} (100%) diff --git a/bin/compiler.php b/bin/compiler.php index f292a428..867a119e 100755 --- a/bin/compiler.php +++ b/bin/compiler.php @@ -3,6 +3,6 @@ require __DIR__ . '/bootstrap.php'; require __DIR__ . '/../src/polyfills.php'; require __DIR__ . '/../src/gen_stub.php'; -require __DIR__ . '/../src/compiler-build.php'; +require __DIR__ . '/../src/compiler.php'; main($argc, $argv); diff --git a/src/compiler-build.php b/src/compiler.php similarity index 100% rename from src/compiler-build.php rename to src/compiler.php