We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed96be9 commit 8cb0a49Copy full SHA for 8cb0a49
lldb/scripts/analyze-project-deps.py
@@ -35,6 +35,7 @@ def insert_or_add_mapping(base, deps):
35
relative = os.path.relpath(base, inc_dir)
36
inc_files = filter(lambda x : os.path.splitext(x)[1] in [".h"], files)
37
deps = set()
38
+ relative = relative.replace("\\", "/")
39
for inc in inc_files:
40
inc_path = os.path.join(base, inc)
41
deps.update(scan_deps(relative, inc_path))
0 commit comments