about summary refs log tree commit diff
diff options
context:
space:
mode:
authorGuillaume Gomez <guillaume1.gomez@gmail.com>2025-01-25 23:32:44 +0100
committerGuillaume Gomez <guillaume1.gomez@gmail.com>2025-02-03 15:52:42 +0100
commit4c932ff8379e70893d3cdc835c289547ba3bee26 (patch)
tree02af47bffafeb7bf3636ce47761f4e1f44b72c9b
parentc325b82453236ca7cb5c6cc2368333c38ab7d141 (diff)
downloadrust-4c932ff8379e70893d3cdc835c289547ba3bee26.tar.gz
rust-4c932ff8379e70893d3cdc835c289547ba3bee26.zip
Update repositories URL for repositories moved to `rust-lang` organization
-rw-r--r--Readme.md4
-rw-r--r--build_system/src/clone_gcc.rs2
-rw-r--r--doc/add-attribute.md2
3 files changed, 4 insertions, 4 deletions
diff --git a/Readme.md b/Readme.md
index e92c16ece2f..d0e4dbba6d3 100644
--- a/Readme.md
+++ b/Readme.md
@@ -23,7 +23,7 @@ A secondary goal is to check if using the gcc backend will provide any run-time
 ## Building
 
 **This requires a patched libgccjit in order to work.
-You need to use my [fork of gcc](https://github.com/antoyo/gcc) which already includes these patches.**
+You need to use my [fork of gcc](https://github.com/rust-lang/gcc) which already includes these patches.**
 
 ```bash
 $ cp config.example.toml config.toml
@@ -40,7 +40,7 @@ to do a few more things.
 To build it (most of these instructions come from [here](https://gcc.gnu.org/onlinedocs/jit/internals/index.html), so don't hesitate to take a look there if you encounter an issue):
 
 ```bash
-$ git clone https://github.com/antoyo/gcc
+$ git clone https://github.com/rust-lang/gcc
 $ sudo apt install flex libmpfr-dev libgmp-dev libmpc3 libmpc-dev
 $ mkdir gcc-build gcc-install
 $ cd gcc-build
diff --git a/build_system/src/clone_gcc.rs b/build_system/src/clone_gcc.rs
index e28ee873eb6..b49dd47f352 100644
--- a/build_system/src/clone_gcc.rs
+++ b/build_system/src/clone_gcc.rs
@@ -61,7 +61,7 @@ pub fn run() -> Result<(), String> {
         return Ok(());
     };
 
-    let result = git_clone("https://github.com/antoyo/gcc", Some(&args.out_path), false)?;
+    let result = git_clone("https://github.com/rust-lang/gcc", Some(&args.out_path), false)?;
     if result.ran_clone {
         let gcc_commit = args.config_info.get_gcc_commit()?;
         println!("Checking out GCC commit `{}`...", gcc_commit);
diff --git a/doc/add-attribute.md b/doc/add-attribute.md
index ae3bcc5e2eb..267c1819525 100644
--- a/doc/add-attribute.md
+++ b/doc/add-attribute.md
@@ -14,4 +14,4 @@ Finally, you need to update this repository by calling the relevant API you adde
 
 To test it, build `gcc`, run `cargo update -p gccjit` and then you can test the generated output for a given Rust crate.
 
-[gccjit.rs]: https://github.com/antoyo/gccjit.rs
+[gccjit.rs]: https://github.com/rust-lang/gccjit.rs