diff --git a/BUILD.gn b/BUILD.gn index 2929c7dc50115eb07570a5cc7c2415f4e24cdcbe..ef67f8a7dcaa72a926807915b85fd09a05240dbb 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 23ca5bac129bc673bfdf6e5b04361c608b50091e..823ea3b627d2eae211ac2183b02a8cc834984638 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) {