Use the correct name of the project

This commit is contained in:
Antoni Boucher 2025-04-29 18:23:23 -04:00
parent f150171b6c
commit d11bfe9c18
2 changed files with 4 additions and 4 deletions

View file

@ -1,6 +1,6 @@
# Contributing to rust_codegen_gcc
# Contributing to rustc_codegen_gcc
Welcome to the `rust_codegen_gcc` project! This guide will help you get started as a contributor. The project aims to provide a GCC codegen backend for rustc, allowing Rust compilation on platforms unsupported by LLVM and potentially improving runtime performance through GCC's optimizations.
Welcome to the `rustc_codegen_gcc` project! This guide will help you get started as a contributor. The project aims to provide a GCC codegen backend for rustc, allowing Rust compilation on platforms unsupported by LLVM and potentially improving runtime performance through GCC's optimizations.
## Getting Started

View file

@ -26,8 +26,8 @@ The default configuration (see below in the [Quick start](#quick-start) section)
### Quick start
1. Clone and configure the repository:
```bash
git clone https://github.com/rust-lang/rust_codegen_gcc
cd rust_codegen_gcc
git clone https://github.com/rust-lang/rustc_codegen_gcc
cd rustc_codegen_gcc
cp config.example.toml config.toml
```