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 ca89db5 commit 5165d43Copy full SHA for 5165d43
meson.build
@@ -2301,6 +2301,14 @@ decl_checks += [
2301
['pwritev', 'sys/uio.h'],
2302
]
2303
2304
+# Check presence of some optional LLVM functions.
2305
+if llvm.found()
2306
+ decl_checks += [
2307
+ ['LLVMCreateGDBRegistrationListener', 'llvm-c/ExecutionEngine.h'],
2308
+ ['LLVMCreatePerfJITEventListener', 'llvm-c/ExecutionEngine.h'],
2309
+ ]
2310
+endif
2311
+
2312
foreach c : decl_checks
2313
func = c.get(0)
2314
header = c.get(1)
0 commit comments