Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/linusu/omega2-rust
This is a Docker image with an Omega2 Toolchain setup together with Rust
https://github.com/linusu/omega2-rust
Last synced: 20 days ago
JSON representation
This is a Docker image with an Omega2 Toolchain setup together with Rust
- Host: GitHub
- URL: https://github.com/linusu/omega2-rust
- Owner: LinusU
- Created: 2018-11-05T18:05:01.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2021-10-22T16:54:05.000Z (about 3 years ago)
- Last Synced: 2024-10-19T23:27:37.054Z (24 days ago)
- Language: Dockerfile
- Size: 13.7 KB
- Stars: 6
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Omega2 Rust Toolchain
This is a Docker image with an Omega2 Toolchain setup together with Rust. It can be used to easily build Rust projects and produce MIPS binaries that can run on the Omega2.
## Usage
Run the following command to build the Rust project in the current directory:
```sh
docker run --rm -it -v $(pwd):/build linusu/omega2-rust:stable
```(replace `stable` with `nightly` to run the nightly build of Rust)
## Building Images
Produce the two images by running these commands:
```sh
docker build --build-arg FLAVOR=stable -t linusu/omega2-rust:stable .
docker build --build-arg FLAVOR=nightly -t linusu/omega2-rust:nightly .
```