diff options
| author | Antoni Boucher <bouanto@zoho.com> | 2023-01-09 17:12:08 -0500 |
|---|---|---|
| committer | Antoni Boucher <bouanto@zoho.com> | 2023-01-09 17:12:08 -0500 |
| commit | 2bf7fb402b88b0345847db65c0857f2d81ea54db (patch) | |
| tree | 5d856cebb7698d7e538e79c1b0c4a9b16fab2dbb | |
| parent | af8db759be6e92e470a6af810f22b2ebc0cfc87f (diff) | |
| download | rust-2bf7fb402b88b0345847db65c0857f2d81ea54db.tar.gz rust-2bf7fb402b88b0345847db65c0857f2d81ea54db.zip | |
Use gccjit from repo
| -rw-r--r-- | Cargo.lock | 2 | ||||
| -rw-r--r-- | Cargo.toml | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/Cargo.lock b/Cargo.lock index e52e742ec6c..e20980caee1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -41,6 +41,7 @@ dependencies = [ [[package]] name = "gccjit" version = "1.0.0" +source = "git+https://github.com/antoyo/gccjit.rs#1e6ecc67fe73ac995e511516eacf4fe3aec8974e" dependencies = [ "gccjit_sys", ] @@ -48,6 +49,7 @@ dependencies = [ [[package]] name = "gccjit_sys" version = "0.0.1" +source = "git+https://github.com/antoyo/gccjit.rs#1e6ecc67fe73ac995e511516eacf4fe3aec8974e" dependencies = [ "libc 0.1.12", ] diff --git a/Cargo.toml b/Cargo.toml index 26a0e92923d..3ac354ea494 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -22,10 +22,10 @@ default = ["master"] master = ["gccjit/master"] [dependencies] -#gccjit = { git = "https://github.com/antoyo/gccjit.rs" } +gccjit = { git = "https://github.com/antoyo/gccjit.rs" } # Local copy. -gccjit = { path = "../gccjit.rs" } +#gccjit = { path = "../gccjit.rs" } smallvec = { version = "1.6.1", features = ["union", "may_dangle"] } target-lexicon = "0.10.0" |
