Hi,
just started to play with VFX Forth for Linux.
It's an old tradition to start with the hello world program.
I wrote hello.fs
: main ." Hello VFX-World!" cr ;
assign main to-do entrypoint
save hello.elf
bye
Then spend some time figuring out if vfxlin has some support for
command line arguments and finally compiled with
vfxlin "include hello.fs" && mv hello.elf hello
The produced executable was working but 'file hello' report this
hello: ELF 32-bit LSB executable,
Intel 80386, version 1 (SYSV),
dynamically linked (uses shared libs),
corrupted section header size <-- strange !?
I missed something or do something wrong in my ompilation command?
Luca.