in-container integrating util to handle processes
 
 
 
Go to file
prplV e2d2100ce9 local logs (nw) 2024-09-04 15:52:57 +03:00
.cargo added aliases for building (example: cargo riscv64) 2024-09-04 10:22:25 +03:00
src local logs (nw) 2024-09-04 15:52:57 +03:00
.gitignore local logs (nw) 2024-09-04 15:52:57 +03:00
Cargo.lock patch is_frozen + logs + no comments 2024-08-27 11:39:18 +03:00
Cargo.toml patch is_frozen + logs + no comments 2024-08-27 11:39:18 +03:00
Dockerfile Update Dockerfile 2024-09-03 17:25:54 +03:00
README.md Update README.md 2024-09-04 10:50:28 +03:00
gdb_init setting up for cross-platform building 2024-08-23 11:57:41 +03:00
rust-toolchain rust-toolchain file added its needed (really needed) 2024-08-23 11:09:36 +03:00
settings.json +getter id container and new view of logs 2024-09-03 15:20:30 +03:00
temp-process added files for dummy ci 2024-09-03 15:29:25 +03:00

README.md

runner-rs ( with amd64 and riscv64 support )

Logo
in-container integrating util to handle processes runtime

Depends on

  • rustup (>=1.27.1)
  • gcc-riscv64-unknown-elf
  • build-essential

Setting up

Download and execute rustup.sh

curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh

Building

  1. Clone this repo runner-rs
  git clone https://github.com/prplV/runner-rs
  1. Enter project's dir and set up toolchain list to compile code for RISC-V and AMD64
  cd runner-rs/ && rustup target add riscv64gc-unknown-linux-gnu && rustup target add x86_64-unknown-linux-gnu

[!NOTE]
Cargo is configured to build an app for amd64/linux defaultly. RISC-based compilation is optional.

3.1. Release build of app for amd64/linux

cargo x86_64

3.2. Release build of app for riscv64/linux

cargo riscv64

Execution for amd64/linux

./target/x86_64-unknown-linux-gnu/release/runner-rs

or

cargo run --release

Execution for riscv64/linux

./target/riscv64gc-unknown-linux-gnu/release/runner-rs