You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
edit Makefile and change the "ld" linker command to:
# assemble and link executable on linux
%.Linux: %.asm
fasm $< [email protected]
LDEMULATION=elf_i386 ld -melf_i386 -o $@ \
-dynamic-linker /lib32/ld-linux.so.2 \
/usr/lib32/crt1.o /usr/lib32/crti.o \
[email protected] \
-lc /usr/lib32/crtn.o
# rm [email protected]
Then compile:
make clean
make
and start seedForth
./seed
..................................................
.
seedForth/interactive 2.2.0
---------------------------
380005 bytes free
0 echo ! 0 input-echo !
⓪
①
......................
ready
② ......
③ .....
➍
The 10001 st prime is 104743
Adjust your terminal to have 1 lines.
Δ has codepoint 916
Δ..
Interactive decompiler: Use single letter commands n d l c b s
ok: if line, ok: next line
ok: else line, ok: other line
ok: afterwords .
18 headers removed
Welcome! ok
> ok
> ok
>
The text was updated successfully, but these errors were encountered:
I was able to compile PreForth and seedForth under Ubuntu 24.04LTS with these steps:
edit
Makefile
and change the "ld" linker command to:Then compile:
and start seedForth
The text was updated successfully, but these errors were encountered: