Added README and build script for the Tup-improverished.

This commit is contained in:
Michael Kuc
2019-11-25 08:55:18 +00:00
parent 58cc42fddb
commit 14c630e311
2 changed files with 56 additions and 0 deletions

4
build.sh Executable file
View File

@@ -0,0 +1,4 @@
#! /bin/sh -e
g++ -pedantic -std=c++17 -Wall -Wno-unused-parameter -Wno-reorder -Wno-sign-compare -Wno-address -Wno-noexcept-type -c src/main.cpp -o build/main.o
g++ -pedantic -std=c++17 -Wall -Wno-unused-parameter -Wno-reorder -Wno-sign-compare -Wno-address -Wno-noexcept-type -c src/register.cpp -o build/register.o
g++ build/main.o build/register.o -lgmpxx -lgmp -o Emulator