From 844cba37aec0b655ba018df7f7282f57b9f79246 Mon Sep 17 00:00:00 2001 From: songqi Date: Mon, 13 Feb 2023 10:17:22 +0800 Subject: [PATCH] Modify thirdParty library as dynamic dependency Issue:I6E4TT Tests:test262/parser/compiler/tsc Signed-off-by: songqi Change-Id: I04c1db4c5ddec6e43c59a70d95dcdef6fd8ee5cd --- es2panda/test/BUILD.gn | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/es2panda/test/BUILD.gn b/es2panda/test/BUILD.gn index c5c0359623..dcd5afa0e2 100644 --- a/es2panda/test/BUILD.gn +++ b/es2panda/test/BUILD.gn @@ -65,7 +65,10 @@ action("es2abc_compiler_tests") { llvm_lib_dir = rebase_path("//prebuilts/clang/ohos/linux-x86_64/llvm/lib/") - ld_library_path = "${ark_js_runtime_dir}:${icu_dir}:${llvm_lib_dir}" + zlib_dir = rebase_path("${root_out_dir}/thirdparty/zlib") + + ld_library_path = + "${ark_js_runtime_dir}:${icu_dir}:${llvm_lib_dir}:${zlib_dir}" args = [ "--no-progress", -- Gitee