Update repositories URL for repositories moved to rust-lang organization
This commit is contained in:
parent
c325b82453
commit
4c932ff837
3 changed files with 4 additions and 4 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue