mirror of
https://github.com/Steffo99/appunti-magistrali.git
synced 2024-11-22 18:44:17 +00:00
5 lines
84 B
Bash
5 lines
84 B
Bash
|
#!/bin/bash
|
||
|
# Compile using g++
|
||
|
riscv64-unknown-elf-g++ -o "$1.elf" "$1.cc"
|
||
|
|
||
|
exit $?
|