about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAntoni Boucher <bouanto@zoho.com>2022-06-29 21:05:40 -0400
committerAntoni Boucher <bouanto@zoho.com>2022-07-06 15:24:53 -0400
commit85036a5afaa0fc7926c91e8d3f557661864833f1 (patch)
tree4e98273ce7ca5c4a9749b63298a087e0504fcd64
parent9db55d2f54e869be328c2f0926786f8fd0ec84a4 (diff)
downloadrust-85036a5afaa0fc7926c91e8d3f557661864833f1.tar.gz
rust-85036a5afaa0fc7926c91e8d3f557661864833f1.zip
Use gccjit from repo
-rw-r--r--Cargo.lock2
-rw-r--r--Cargo.toml4
2 files changed, 4 insertions, 2 deletions
diff --git a/Cargo.lock b/Cargo.lock
index e52e742ec6c..ff09a08b5af 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#a8997afb665dc467c1bdbddf04877143683f0cce"
 dependencies = [
  "gccjit_sys",
 ]
@@ -48,6 +49,7 @@ dependencies = [
 [[package]]
 name = "gccjit_sys"
 version = "0.0.1"
+source = "git+https://github.com/antoyo/gccjit.rs#a8997afb665dc467c1bdbddf04877143683f0cce"
 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"