
The ScriptBasic open source project development team has made available a release candidate for the new 3.0 release for Windows 32/64 platforms. The source has been compiled with the
TDM MinGW/GCC C/C++ compiler. The pre-compiled runtime binaries for both 32 and 64 Windows platforms are available for download as is the common source for ScriptBasic. Please help the project out with testing and providing feedback for the new 3.0 pre-release.
Source.
New makefile target: install
After building with -m32 or -m64, do:
make install DIR={where you want to install}
For example, after building the 64bit version, I did:
make install DIR=c:\Scriptbasic64.
The DIR= part is REQUIRED. Limitation of the Windows Shell (bash would have made the entire Makefile a piece of cake).
There's no target for uninstall; it's easy to implement but I want YOU to do it (only way to learn).
libxml is removed, and replaced with mxml.
mxml module currently has the following functions:
"LoadDoc"
"GetNext"
"GetChild"
"GetNodeValue"
"GetNode"
"SaveDoc"
"NewDoc"
"FreeDoc"
"GetProperty"
See the interface.c file for more info about each function (you should be able to generate the html pages, I think, using Perl).
The
mxml.zip file contains libmxml.a files for 32 and 64 bit modes and should be copied to your MinGW include directory by platform.
ScriptBasic 3.0 Windows 64 Binaries