mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-20 20:04:19 +08:00
25 lines
707 B
Markdown
25 lines
707 B
Markdown
# cookbook
|
|
A collection of package recipes for Redox.
|
|
|
|
[](https://travis-ci.org/redox-os/cookbook)
|
|
[](./LICENSE)
|
|
|
|
## Setup
|
|
|
|
### Ubuntu and other Debian based systems
|
|
|
|
To install the toolchain, run the following commands:
|
|
```bash
|
|
# Get the Redox OS APT key
|
|
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys AA12E97F0881517F
|
|
|
|
# Install the APT repository
|
|
sudo add-apt-repository 'deb https://static.redox-os.org/toolchain/apt /'
|
|
|
|
# Update your package lists
|
|
sudo apt update
|
|
|
|
# Install the cross compiler
|
|
sudo apt install x86-64-unknown-redox-gcc
|
|
```
|