mirror of
https://github.com/engineer-man/piston.git
synced 2025-04-20 12:07:49 +02:00
This patch adds support for the HolyC programming language by Terry A. Davis. The compiler used is based on a modified version of the 3Days compiler. Both 3Days and the fork used here do not have a specific version so 1.0.0 has been used and will be used forwards in future commits unless 3Days gets versioning (which it wont since development stopped). Signed-off-by: Slendi <slendi@socopon.com>
22 lines
284 B
Bash
Executable file
22 lines
284 B
Bash
Executable file
#!/bin/bash
|
|
|
|
PREFIX=$(realpath $(dirname $0))
|
|
|
|
mkdir -p build
|
|
|
|
cd build
|
|
|
|
curl https://git.xslendi.xyz/slendi/3Days/archive/main.tar.gz -o 3days.tar.gz
|
|
|
|
tar xzf 3days.tar.gz --strip-components=1
|
|
rm 3days.tar.gz
|
|
|
|
make
|
|
|
|
cp -v 3d_loader $PREFIX/.
|
|
cp -rv T $PREFIX/.
|
|
|
|
cd ..
|
|
|
|
rm -rf build
|
|
|