Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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 .
```