File tree 1 file changed +3
-2
lines changed
1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ have added a conan remote with tket available for your system (there may be inst
7
7
this on the tket repository). For current tket releases, you will need gcc 11.
8
8
For bindgen and autocxx you need Clang.
9
9
10
- And install conan with ` pip install conan ` .
10
+ And install conan with ` pip install conan~=1.60 ` .
11
11
After that ` cargo build --release ` should do the job (note release is needed for
12
12
linking to work correctly). Make sure linking and loading is succesful with
13
13
` cargo test --release ` .
@@ -63,4 +63,5 @@ Environment variables:
63
63
` LIBCLANG_PATH="${LLVM_PATH}/lib" `
64
64
* Bindgen may still fail to find c++ headers, so you may need to also set
65
65
`BINDGEN_EXTRA_CLANG_ARGS="-I${LLVM_PATH}/lib/clang/12.0.1/include/
66
- -L${LIBCLANG_PATH}"` (or other system header paths on the include)
66
+ -L${LIBCLANG_PATH}"` (or other system header paths on the include)
67
+ * On Ubuntu this may do the trick: ` BINDGEN_EXTRA_CLANG_ARGS="-I/usr/include/c++/11 -I/usr/include/x86_64-linux-gnu/c++/11" `
You can’t perform that action at this time.
0 commit comments