From d3b17ed2b7fc5b25ea4390dd1b896313bb2c72ca Mon Sep 17 00:00:00 2001 From: yanzhiqi1 Date: Thu, 21 Aug 2025 10:22:26 +0800 Subject: [PATCH] delete rpath in linux Issue: #ICTB72 Signed-off-by: yanzhiqi1 Change-Id: If2b335bcd747bb1de93ba530a3d2dc0d124b934d --- ecmascript/dfx/hprof/rawheap_translate/BUILD.gn | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ecmascript/dfx/hprof/rawheap_translate/BUILD.gn b/ecmascript/dfx/hprof/rawheap_translate/BUILD.gn index aa1f90bc8e..f45bb13bc3 100644 --- a/ecmascript/dfx/hprof/rawheap_translate/BUILD.gn +++ b/ecmascript/dfx/hprof/rawheap_translate/BUILD.gn @@ -36,6 +36,10 @@ ohos_executable("rawheap_translator") { "cJSON:cjson_static", ] + if (is_linux) { + remove_configs = [ "//build/config:executable_config" ] + } + install_enable = true part_name = "ets_runtime" subsystem_name = "arkcompiler" -- Gitee