Getting started
FreeBASIC-NG retains the fbc compiler executable. Download a host archive from
the release page,
extract it, and add its bin directory to your PATH.
fbc --versionfbc hello.basFor a source build, use CMake 3.20 or newer and a C compiler:
cmake -B build -G Ninja -DCMAKE_BUILD_TYPE=Releasecmake --build build./build/src/compiler/fbc --versionThe default bootstrap comes from the versioned generated-C sources in the
repository. -DFB_USE_SYSTEM_FBC=ON is an explicit opt-in for a local compiler.