Use gccjit from repo

This commit is contained in:
Antoni Boucher 2023-01-09 17:12:08 -05:00
parent af8db759be
commit 2bf7fb402b
2 changed files with 4 additions and 2 deletions

2
Cargo.lock generated
View File

@ -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",
]

View File

@ -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"