-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathREADME.md
More file actions
37 lines (24 loc) · 1.07 KB
/
README.md
File metadata and controls
37 lines (24 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# Conjure Oxide
This repository contains the in-progress Conjure Oxide constraints modelling
tool and its dependencies.
This repository hosts the following projects:
* [Conjure Oxide](https://github.com/conjure-cp/conjure-oxide/tree/main/conjure_oxide)
* [`minion_rs` - Rust bindings to Minion](https://github.com/conjure-cp/conjure-oxide/tree/main/solvers/minion)
This project is being produced by staff and students of University of St
Andrews, and is licenced under the [MPL 2.0](./LICENCE).
## Rust Nightly Support
The following compiler flags are required for Conjure-Oxide to work with
Nightly Rust:
```sh
export RUSTFLAGS="-Zlinker-features=-lld"
export RUSTDOCFLAGS="-Zlinker-features=-lld"
cargo build <...>
```
This is because of current incompatibilities with linkme and the new default
linker ([link](https://github.com/dtolnay/linkme/issues/94)).
## Documentation
API documentation can be found [here](https://conjure-cp.github.io/conjure-oxide/docs/).
## Contributing
See the [project wiki](https://github.com/conjure-cp/conjure-oxide/wiki)
<!-- vim: cc=80
-->