Currently, this version of this SDK is barely pushing alpha. It is currently a test.
Everything in this project must be built from source, including the C++ SDK and the compiler
- Maps
- Update Runtime to use versioning
- Create proper Memory System for heap
- Update Runtime to grow heap size and to not be limited.
- Create BORA Debugging via runtime instructions
- Make compilier build every component [3rdparties]
use BORAC, remember to add BORA_SDK_PATH to the system environment variables, its required and essential.
Before using BORAC, install dependents through
borac installIt will do all the work, wait for it to finish.
To build a BORA application
borac main.cpp --o="main"
# in future borac
# borac main.cpp -o main
# It will output main.bapp in your directoryI'm aware the app params are ugly, i'll fix it tomorrow.
Since the BORA-SDK is compiled of borac, you'll need to compile it for tests and etc. How?
# In cpp/libs
borac ../source/bora.cpp --o="bora" --as="cdep" --nobora
# in future borac
# borac ../source -o bora -as cdep --nobora
# It will output libbora.bcdep in your directory!So far, so good.