Skip to content

Commit 4c932ff

Browse files
Update repositories URL for repositories moved to rust-lang organization
1 parent c325b82 commit 4c932ff

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Diff for: Readme.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ A secondary goal is to check if using the gcc backend will provide any run-time
2323
## Building
2424

2525
**This requires a patched libgccjit in order to work.
26-
You need to use my [fork of gcc](https://github.com/antoyo/gcc) which already includes these patches.**
26+
You need to use my [fork of gcc](https://github.com/rust-lang/gcc) which already includes these patches.**
2727

2828
```bash
2929
$ cp config.example.toml config.toml
@@ -40,7 +40,7 @@ to do a few more things.
4040
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):
4141

4242
```bash
43-
$ git clone https://github.com/antoyo/gcc
43+
$ git clone https://github.com/rust-lang/gcc
4444
$ sudo apt install flex libmpfr-dev libgmp-dev libmpc3 libmpc-dev
4545
$ mkdir gcc-build gcc-install
4646
$ cd gcc-build

Diff for: build_system/src/clone_gcc.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ pub fn run() -> Result<(), String> {
6161
return Ok(());
6262
};
6363

64-
let result = git_clone("https://github.com/antoyo/gcc", Some(&args.out_path), false)?;
64+
let result = git_clone("https://github.com/rust-lang/gcc", Some(&args.out_path), false)?;
6565
if result.ran_clone {
6666
let gcc_commit = args.config_info.get_gcc_commit()?;
6767
println!("Checking out GCC commit `{}`...", gcc_commit);

Diff for: doc/add-attribute.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@ Finally, you need to update this repository by calling the relevant API you adde
1414

1515
To test it, build `gcc`, run `cargo update -p gccjit` and then you can test the generated output for a given Rust crate.
1616

17-
[gccjit.rs]: https://github.com/antoyo/gccjit.rs
17+
[gccjit.rs]: https://github.com/rust-lang/gccjit.rs

0 commit comments

Comments
 (0)