1
Fork 0
mirror of https://github.com/Steffo99/appunti-magistrali.git synced 2024-11-22 02:44:17 +00:00
appunti-steffo/2 - Architettura dei calcolatori/0 - Script forniti/gcc.sh

6 lines
85 B
Bash
Raw Normal View History

#!/bin/bash
# Compile using g++
riscv64-unknown-elf-gcc -o "$1.elf" "$1.cc"
exit $?