Installing flatcc On Mac
Name: flatcc
Use: FlatBuffers Compiler and Library in C for C
URL: https://github.com/dvidelabs/flatcc
flatcc has no external dependencies except for build and compiler tools, and the C runtime library. With concurrent Ninja builds, a small client project can build flatcc with libraries, generate schema code, link the project and execute a test case in less than 2 seconds (4 incl. flatcc clone), rebuild in less than 0.2 seconds and produce binaries between 15K and 60K, read small buffers in 30ns, build FlatBuffers in about 600ns, and with a larger executable handle optional json parsing or printing in less than 2 us for a 10 field mixed type message.
Installation Steps:
- Get your terminal running
- In terminal run following command to install brew first
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" < /dev/null 2> /dev/null
- After installing brew, nstall flatcc
brew install flatcc
flatcc is ready to use now!