From 8d86b2a6aa5c88cc05080e5073754969a23f8408 Mon Sep 17 00:00:00 2001 From: zhushengle Date: Mon, 2 Dec 2024 16:56:20 +0800 Subject: [PATCH] =?UTF-8?q?cherry=20pick=20fdd87ed=20from=20https://gitee.?= =?UTF-8?q?com/zhushengle/chromium=5Fv8/pulls/196=20fix:=20=E4=BD=BF?= =?UTF-8?q?=E8=83=BDCFI?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: zhushengle Change-Id: Id60a48593869953d84b15314c3d5638e7ff52317 --- BUILD.gn | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/BUILD.gn b/BUILD.gn index 7db218126..a067a6fa0 100644 --- a/BUILD.gn +++ b/BUILD.gn @@ -298,9 +298,9 @@ declare_args() { # Enable control-flow integrity features, such as pointer authentication for # ARM64. Enable it by default for simulator builds and when native code # supports it as well. - v8_control_flow_integrity = - v8_current_cpu == "arm64" && - (target_is_simulator || arm_control_flow_integrity != "none") + v8_control_flow_integrity = false + # v8_current_cpu == "arm64" && + # (target_is_simulator || arm_control_flow_integrity != "none") # Enable heap reservation of size 4GB. Only possible for 64bit archs. cppgc_enable_caged_heap = -- Gitee