From: Bryan English Date: Fri, 30 Jan 2026 03:42:35 +0000 (-0500) Subject: update fib-example X-Git-Url: https://rethought.computer/gitweb//gitweb//git?a=commitdiff_plain;h=de010c54a0a89ad7288998e1101913d1e1639afb;p=sorel-lang.git update fib-example --- diff --git a/rel-lang/.gitignore b/rel-lang/.gitignore index 82f7d40..a41520b 100644 --- a/rel-lang/.gitignore +++ b/rel-lang/.gitignore @@ -2,3 +2,4 @@ target qemu/machine *.o *.asm +*.out diff --git a/rel-lang/fib-example/compile.sh b/rel-lang/fib-example/compile.sh index 24fe7a7..2e8be05 100644 --- a/rel-lang/fib-example/compile.sh +++ b/rel-lang/fib-example/compile.sh @@ -1,4 +1,4 @@ -../target/debug/relc fib.rel > fib.asm +../target/debug/relc fib.rel riscv64-unknown-linux-gnu-as -o fib.o fib.asm -riscv64-unknown-linux-gnu-cc -O1 -no-pie -o test fib.o putn.c -nostartfiles -./test +riscv64-unknown-linux-gnu-cc -O1 -no-pie -o test.out fib.o putn.c -nostartfiles +./test.out