From 0cc122f675f3d60870b341efcd0b6ff30d8b773e Mon Sep 17 00:00:00 2001 From: Konstantin Baladurin Date: Mon, 6 Feb 2023 12:05:42 +0300 Subject: [PATCH] Turn on compile_commands.json generation Change-Id: I78ca665dc302a936e37c133d92794393f6f40720 Signed-off-by: Konstantin Baladurin --- hb_internal/build/build_process.py | 1 + 1 file changed, 1 insertion(+) diff --git a/hb_internal/build/build_process.py b/hb_internal/build/build_process.py index 20fc2cd..f8c587c 100755 --- a/hb_internal/build/build_process.py +++ b/hb_internal/build/build_process.py @@ -247,6 +247,7 @@ class Build(): gn_cmd = [ gn_path, 'gen', + '--export-compile-commands', '--args={}'.format(" ".join(self._args_list)), self.config.out_path, ] + gn_args -- Gitee