Skip to content

Commit bd7e8e0

Browse files
authored
Merge pull request #4 from CQCL-DEV/fix/force-conan1
Force using conan1
2 parents 6c0ac9a + be55de7 commit bd7e8e0

File tree

5 files changed

+25
-12
lines changed

5 files changed

+25
-12
lines changed

Cargo.toml

+8-4
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,14 @@ edition = "2018"
77
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
88

99
[dependencies]
10-
autocxx = { version = "0.22.3" }
10+
autocxx = { version = "0.26.0" }
1111
cxx = "1.0.68"
1212

1313
[build-dependencies]
14-
conan = "0.2"
15-
autocxx-build = { version = "0.22.3" }
16-
miette = { version="4.3", features=["fancy"] }
14+
conan = "0.3"
15+
autocxx-build = { version = "0.26.0" }
16+
miette = { version="5.9", features=["fancy"] }
17+
18+
[lib]
19+
# autocxx generates some doctest-like code which fails to compile
20+
doctest = false

README.md

+8-4
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ linking to work correctly). Make sure linking and loading is succesful with
1515
You will need a conan profile that matches the pattern
1616
`tket-rs-{os}-{platform}`, e.g. `tket-rs-linux-x86_64`. So a command like
1717

18-
```
18+
```bash
1919
conan profile new tket-rs-linux-x86_64 --detect
2020
```
2121

@@ -24,7 +24,7 @@ should work.
2424

2525
You might also need to run
2626

27-
```
27+
```bash
2828
conan profile update settings.compiler.libcxx=libstdc++11 tket-rs-linux-x86_64
2929
```
3030

@@ -33,8 +33,8 @@ Now go check that profile, crucially you need to make sure compiler version is
3333
11, compiler is gcc, and build_type is Release.
3434

3535

36-
Here is an example:
37-
```
36+
Here is an example for a linux profile:
37+
```toml
3838
[settings]
3939
os=Linux
4040
os_build=Linux
@@ -49,6 +49,10 @@ build_type=Release
4949
[env]
5050
```
5151

52+
Finally, make sure to add the remote with the tket pre-compiled binaries:
53+
```bash
54+
conan remote add tket-libs https://quantinuumsw.jfrog.io/artifactory/api/conan/tket1-libs
55+
```
5256

5357
## Troubleshooting
5458

build.rs

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
use conan::*;
22

3-
use std::path::{Path, PathBuf};
43
use std::env;
4+
use std::path::{Path, PathBuf};
55

66
fn main() {
77
let target_os = env::var("CARGO_CFG_TARGET_OS").unwrap();
@@ -22,12 +22,12 @@ fn main() {
2222
let mut cxx_includes: Vec<_> = build_info
2323
.dependencies()
2424
.iter()
25-
.filter_map(|dep| dep.get_include_dir().map(|dir| PathBuf::from(dir)))
25+
.filter_map(|dep| dep.get_include_dir().map(PathBuf::from))
2626
.collect();
2727
for c in build_info
2828
.dependencies()
2929
.iter()
30-
.filter_map(|dep| dep.get_library_dir().map(|dir| PathBuf::from(dir)))
30+
.filter_map(|dep| dep.get_library_dir().map(PathBuf::from))
3131
{
3232
println!("cargo:rustc-link-search={}", c.display());
3333
// loader_s.push_str(&format!(":{}", c.display())[..]);
@@ -45,6 +45,7 @@ fn main() {
4545
.define("BOOST_ALLOW_DEPRECATED_HEADERS", "ON")
4646
.file("src/unitary.cpp")
4747
.flag("-std=c++17")
48+
.flag("-w") // Ignore warnings from tket (and symengine)
4849
.opt_level(1)
4950
.compile("tket-rs");
5051

requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
conan
1+
conan==1.60.1

src/lib.rs

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Ignore generated code
2+
#![allow(clippy::all)]
3+
#![allow(unknown_lints)]
4+
15
use autocxx::include_cpp;
26
// pub mod tkbind {
37
include_cpp! {

0 commit comments

Comments
 (0)