From 979e9030432ac92744223ab54e3625e63047cff0 Mon Sep 17 00:00:00 2001 From: zhuoli Date: Thu, 24 Nov 2022 20:39:28 +0800 Subject: [PATCH] fixed 813ac37 from https://gitee.com/zhuoli72/ark_ts2abc/pulls/710 Remove statical linkage of ark binaries ISSUE:I630JA Signed-off-by: zhuoli Change-Id: I317025b6551b4c9395c29843cb42bb901e72ed4c --- es2panda/BUILD.gn | 5 ----- merge_abc/BUILD.gn | 5 ----- 2 files changed, 10 deletions(-) diff --git a/es2panda/BUILD.gn b/es2panda/BUILD.gn index ae3a711f2f..9c1a7ae9e1 100644 --- a/es2panda/BUILD.gn +++ b/es2panda/BUILD.gn @@ -445,12 +445,7 @@ ohos_executable("es2panda") { ] } - if (!is_mac) { - static_link = true - } - if (!use_musl) { - static_link = false ldflags += [ "-lc++" ] } diff --git a/merge_abc/BUILD.gn b/merge_abc/BUILD.gn index be0d3d7297..980dd2a758 100644 --- a/merge_abc/BUILD.gn +++ b/merge_abc/BUILD.gn @@ -200,12 +200,7 @@ ohos_executable("merge_abc") { defines = [ "PANDA_TARGET_WINDOWS" ] } - if (!is_mac) { - static_link = true - } - if (!use_musl) { - static_link = false ldflags += [ "-lc++" ] } -- Gitee