I managed to get fbc compiled to the point where it will execute by following the suggestions on the screen, and with a bit of searching on the web. I have a short test program with this at the top:
Code: Select all
#include "string.bi"
I run the compiler like so:
Code: Select all
./fbc test.bas -e
I am presented the following error message:
Code: Select all
test.bas(3) error 23: File not found, "string.bi" in '#include "string.bi"'
There is an option "-p" to specify a path, so I run it like this:
Code: Select all
./fbc test.bas -e -p /home/storm5510/fb/include/freebasic/
The error message repeats. The "string.bi" file exists in the path. I really do not know what to do at this point. Any assistance would be helpful. Thank you!