From 7cb2afef8323bf1b5659ed43b7fce107ecae1462 Mon Sep 17 00:00:00 2001 From: Chikunov Danila Date: Tue, 29 Jul 2025 17:42:46 +0300 Subject: [PATCH] Adding PANDA_USE_32_BIT_POINTER macros to arch32 And renaming it Issue: https://gitee.com/openharmony/arkcompiler_runtime_core/issues/ICE34D Change-Id: I393062b13c7dc53b2406d4f6d68e46fb1823c36b Signed-off-by: Chikunov Danila --- BUILD.gn | 4 ++-- common_components/BUILD.gn | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/BUILD.gn b/BUILD.gn index 2929c7dc50..ef67f8a7dc 100644 --- a/BUILD.gn +++ b/BUILD.gn @@ -664,7 +664,7 @@ config("ark_jsruntime_common_config") { "PANDA_TARGET_ARM64", "PANDA_TARGET_64", "PANDA_ENABLE_GLOBAL_REGISTER_VARIABLES", - "PANDA_USE_32_BIT_POINTER", + "PANDA_32_BIT_MANAGED_POINTER", ] } else if (current_cpu == "x86") { defines += [ "PANDA_TARGET_X86" ] @@ -673,7 +673,7 @@ config("ark_jsruntime_common_config") { defines += [ "PANDA_TARGET_64", "PANDA_TARGET_AMD64", - "PANDA_USE_32_BIT_POINTER", + "PANDA_32_BIT_MANAGED_POINTER", ] } if (enable_ark_intl) { diff --git a/common_components/BUILD.gn b/common_components/BUILD.gn index 23ca5bac12..823ea3b627 100755 --- a/common_components/BUILD.gn +++ b/common_components/BUILD.gn @@ -279,7 +279,7 @@ config("common_components_common_config") { "PANDA_TARGET_ARM64", "PANDA_TARGET_64", "PANDA_ENABLE_GLOBAL_REGISTER_VARIABLES", - "PANDA_USE_32_BIT_POINTER", + "PANDA_32_BIT_MANAGED_POINTER", ] } else if (current_cpu == "x86") { defines += [ "PANDA_TARGET_X86" ] @@ -288,7 +288,7 @@ config("common_components_common_config") { defines += [ "PANDA_TARGET_64", "PANDA_TARGET_AMD64", - "PANDA_USE_32_BIT_POINTER", + "PANDA_32_BIT_MANAGED_POINTER", ] } if (enable_ark_intl) { -- Gitee