30 """Generate compile_commands.json for the C++ analysis servers.
31
32 compile_commands.json is used by the c++ clang and intellij language analysis
33 servers used in IDEs such as Visual Studio Code and Emacs.
34
35 Args:
36 options: supported options include: verbose, force, dir
37
38 Returns:
39 success (0) or failure (non zero)
40 """
41
42 fname = os.path.join(options.dir, "compile_commands.json")
43
44 if os.path.isfile(fname) and not options.force:
45 print(fname +
" already exists, use --force to override")
46 return
47
49 if gn_result != 0:
50 return gn_result
51
53 mode="debug",
54 arch=options.arch,
55 target_os=options.os,
56 sanitizer=options.sanitizer)
57
58 if not os.path.isdir(out_folder):
59 return 1
60
61 command_set = json.loads(
62 subprocess.check_output([
63 "buildtools/ninja/ninja", "-C", out_folder, "-t", "compdb", "-x",
64 "cxx", "cc", "h"
65 ]))
66
67 commands = []
68 for obj in command_set:
69 command = obj["command"]
70
71
72 if "-DDART_PRECOMPILED_RUNTIME" in command:
73 continue
74
75
76 command = command.replace("-Werror", "")
77
78 match = re.search(r"(\.\.\/\.\.\/[^ ]+\/clang\/bin\/clang)", command)
79 if match:
80 command = match.group(1) + command[match.end():]
81 else:
82 print(
"Path ending in clang/bin/clang not found in the command.")
83
84
85
86
87 command = re.sub(r"([^\s]*)ninja -t msvc -e environment.x64 --", "",
88 command)
89
90
91
92 windowsSysroots = [
93 'C:\\src\\depot_tools\\win_toolchain\\vs_files\\27370823e7\\Windows Kits\\10\\Include\\10.0.22621.0\\um',
94 'C:\\src\\depot_tools\\win_toolchain\\vs_files\\27370823e7\\Windows Kits\\10\\Include\\10.0.22621.0\\shared',
95 'C:\\src\\depot_tools\\win_toolchain\\vs_files\\27370823e7\\Windows Kits\\10\\Include\\10.0.22621.0\\winrt',
96 'C:\\src\\depot_tools\\win_toolchain\\vs_files\\27370823e7\\Windows Kits\\10\\Include\\10.0.22621.0\\ucrt',
97 'C:\\src\\depot_tools\\win_toolchain\\vs_files\\27370823e7\\VC\\Tools\\MSVC\\14.34.31933\\include',
98 'C:\\src\\depot_tools\\win_toolchain\\vs_files\\27370823e7\\VC\\Tools\\MSVC\\14.34.31933\\atlmfc\\include',
99 ]
100 for windowsSysroot in windowsSysroots:
101 command = command.replace(
102 "-DDART_TARGET_OS_WINDOWS",
103 "-DDART_TARGET_OS_WINDOWS \"-I%s\"" % windowsSysroot)
104
105
106 command = command.replace("-DDART_TARGET_OS_WINDOWS",
107 "-DDART_TARGET_OS_WINDOWS -ferror-limit=0")
108
109 obj["command"] = command
110 commands += [obj]
111
112 with open(fname, "w") as f:
113 json.dump(commands, f, indent=4)
114
115 return 0
116
117
def GenerateCompileCommands(options)
def print(*args, **kwargs)
def GetBuildRoot(host_os, mode=None, arch=None, sanitizer=None)