From b3e2535473f8476540fd40616b64ac4aee9178cd Mon Sep 17 00:00:00 2001 From: Zhenyu Pan Date: Thu, 9 Feb 2023 14:08:29 +0800 Subject: [PATCH] Depend on dynamic library of secure_c instead of static library Issue:https://gitee.com/openharmony/arkcompiler_ets_runtime/issues/I6DRZX Signed-off-by: Zhenyu Pan Change-Id: I52e926cc9134c40a363b87ce6a6f7f3d129466c0 --- ts2panda/BUILD.gn | 1 + ts2panda/ts2abc/BUILD.gn | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/ts2panda/BUILD.gn b/ts2panda/BUILD.gn index 89de1457b4..46620a12ce 100755 --- a/ts2panda/BUILD.gn +++ b/ts2panda/BUILD.gn @@ -86,6 +86,7 @@ ark_gen_file("ts2abc_irnodes_ts") { action("npm_run_build") { visibility = [ ":*" ] deps = [ + "$ark_third_party_root/bounds_checking_function:libsec_shared", "$ts2abc_root:config_files", "$ts2abc_root:node_modules", "$ts2abc_root:ts2abc_diagnostic_ts", diff --git a/ts2panda/ts2abc/BUILD.gn b/ts2panda/ts2abc/BUILD.gn index 3b264a58dc..d130af8958 100755 --- a/ts2panda/ts2abc/BUILD.gn +++ b/ts2panda/ts2abc/BUILD.gn @@ -84,8 +84,8 @@ ohos_executable("ts2abc") { ] deps = [ + "$ark_third_party_root/bounds_checking_function:libsec_shared", "//arkcompiler/ets_frontend/merge_abc:panda_assembly_proto_static", - sdk_libc_secshared_dep, ] if (is_linux || is_mingw || is_mac) { -- Gitee