Skip to content

Commit d908ed6

Browse files
committed
Use pythnon clang from ubuntu repo
Use LLVM-19
1 parent aafa35a commit d908ed6

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

build-linux.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
set -x
44
set -e
55

6-
(cd installer && conan install -u . --build=missing)
7-
(cd sources/scripts/ && pip3 install -r requirements.txt)
6+
(cd installer && conan install . --update --build=missing)
7+
#(cd sources/scripts/ && pip3 install -r requirements.txt --break-system-packages)
88
(cd sources/scripts/ && python3 lla.py)
99

1010
# Build

sources/scripts/lla.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020

2121
if os.name == 'posix':
22-
clang.cindex.Config.set_library_file('/usr/lib/llvm-9/lib/libclang.so')
22+
clang.cindex.Config.set_library_file('/usr/lib/llvm-19/lib/libclang.so')
2323
else:
2424
clang.cindex.Config.set_library_file('C:\\Program Files\\LLVM\\bin\\libclang.dll')
2525
logging.basicConfig(level=logging.INFO)

0 commit comments

Comments
 (0)