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 0bb32bf commit cdc7f63Copy full SHA for cdc7f63
mlir/test/lit.cfg.py
@@ -70,13 +70,19 @@ def find_runtime(name):
70
break
71
return path
72
73
+
74
# Find path to the ASan runtime required for the Python interpreter.
75
def find_asan_runtime():
76
if not "asan" in config.available_features or not "Linux" in config.host_os:
77
return ""
78
# Find the asan rt lib
79
return (
- subprocess.check_output([config.host_cxx.strip(), f"-print-file-name=libclang_rt.asan-{config.host_arch}.so"])
80
+ subprocess.check_output(
81
+ [
82
+ config.host_cxx.strip(),
83
+ f"-print-file-name=libclang_rt.asan-{config.host_arch}.so",
84
+ ]
85
+ )
86
.decode("utf-8")
87
.strip()
88
)
0 commit comments