From 66b5dc3d5558520a471f21b746ba3848da00fa16 Mon Sep 17 00:00:00 2001 From: Marshall Greenblatt Date: Wed, 11 Jul 2018 12:32:48 -0400 Subject: [PATCH] Disable cfi-icall which is not supported by the CEF bindings layer (issue #2472) --- tools/gn_args.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tools/gn_args.py b/tools/gn_args.py index b99488f7c..65ea30bba 100644 --- a/tools/gn_args.py +++ b/tools/gn_args.py @@ -251,6 +251,10 @@ def GetRequiredArgs(): # Don't use the chrome style plugin. 'clang_use_chrome_plugins': False, + + # Disable cfi-icall which is not supported by the CEF bindings layer (see + # issue #2472). + 'use_cfi_icall': False, } if platform == 'linux':