mirror of
https://github.com/engineer-man/piston.git
synced 2025-04-20 20:16:26 +02:00
12 lines
226 B
Bash
12 lines
226 B
Bash
curl -L https://ftp.gnu.org/gnu/gforth/gforth-0.7.3.tar.gz -o forth.tar.gz
|
|
tar xzf forth.tar.gz
|
|
rm forth.tar.gz
|
|
|
|
cd gforth-0.7.3/
|
|
./BUILD-FROM-SCRATCH --host=x86_64 --build=x86_64
|
|
|
|
make
|
|
make install
|
|
|
|
chmod +x ./gforth
|
|
cd ..
|