smallbasic / SmallBASIC

SmallBASIC is a fast and easy to learn BASIC language interpreter ideal for everyday calculations, scripts and prototypes. SmallBASIC includes trigonometric, matrices and algebra functions, a built in IDE, a powerful string library, system, sound, and graphic commands along with structured programming syntax
https://smallbasic.github.io
GNU General Public License v3.0
210 stars 37 forks source link

How to build sbasici and sbasicw? #164

Open ghost opened 1 year ago

ghost commented 1 year ago

sbasici is the REPL shell isn't it? Please pardon me as I'm new to SmallBASIC. When I build SmallBASIC non-graphical version on MSYS2, I only have sbasic.exe and other binaries normally found on the SmallBASIC distribution are missing.

chrisws commented 1 year ago

Try this. Note: I build the Windows release on linux with cross-compiler options. I haven't tested building on windows for a long time.

1. build sbasicg.exe

./configure --enable-sdl
make 

2. build sbasici.exe

./configure --enable-fltk
make 

3. build sbasicw.exe

./configure --enable-web 
make