From a426590129691964a87a0bb7566e1c814c6515e5 Mon Sep 17 00:00:00 2001 From: liujia178 Date: Fri, 29 Aug 2025 18:02:53 +0800 Subject: [PATCH] fix hybrid compilation Issue: https://gitee.com/openharmony/arkcompiler_runtime_core/issues/ICV9IN Signed-off-by: liujia178 --- es2panda/es2abc_config.gni | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/es2panda/es2abc_config.gni b/es2panda/es2abc_config.gni index 9427086588..95ab33c6c9 100644 --- a/es2panda/es2abc_config.gni +++ b/es2panda/es2abc_config.gni @@ -136,7 +136,9 @@ template("es2abc_gen_newest_abc") { deps = extra_dependencies if (host_toolchain == toolchain_mac) { - external_deps = ["ets_frontend:es2panda($toolchain_mac)"] + if (!is_mac) { + external_deps = ["ets_frontend:es2panda($toolchain_mac)"] + } } else if (host_toolchain == toolchain_win) { external_deps = ["ets_frontend:es2panda(${host_toolchain})"] } else if (ark_standalone_build) { -- Gitee