From 570f5cc9996dbbe03a4ef219341bf6dfec0e905e Mon Sep 17 00:00:00 2001 From: Tao Wu Date: Tue, 7 Jan 2025 21:43:40 +0800 Subject: [PATCH] Standalone build for static linker Support building static linker for Linux, Windows and OHOS by standalone build. Issue: https://gitee.com/openharmony/arkcompiler_runtime_core/issues/IBGBHL Signed-off-by: Tao Wu Change-Id: I94121910dca88382a319846962efed977bc427d2 --- build/core/gn/BUILD.gn | 1 + 1 file changed, 1 insertion(+) diff --git a/build/core/gn/BUILD.gn b/build/core/gn/BUILD.gn index 96b180d5..de909824 100644 --- a/build/core/gn/BUILD.gn +++ b/build/core/gn/BUILD.gn @@ -90,6 +90,7 @@ group("static_core") { "$ark_root/static_core/compiler:libarktscompiler", "$ark_root/static_core/libpandabase:libarktsbase", "$ark_root/static_core/libpandafile:libarktsfile", + "$ark_root/static_core/static_linker:static_linker", ] if (target_os != "mingw") { deps += [ "$ark_root/static_core/runtime:libarkruntime" ] -- Gitee