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 3580c0b commit ae0df07Copy full SHA for ae0df07
doc/source/conf.py
@@ -71,9 +71,11 @@
71
elif sys.platform == 'windows':
72
lib_search_dirs = []
73
else:
74
+ # we are nailed to clang-14 by readthedocs, so we must look in llvm-14
75
+ # for libclang.so
76
lib_search_dirs = [
77
'/usr/lib',
78
'/usr/local/lib',
- ] + glob('/usr/lib/llvm-*/lib')
79
+ ] + glob('/usr/lib/llvm-14/lib')
80
for lib_dir in lib_search_dirs:
81
clang_config.set_library_path(lib_dir)
0 commit comments