Skip to content

Instantly share code, notes, and snippets.

@fademan01
fademan01 / flatbufferInstall.md
Created January 6, 2026 11:45 — forked from ankur-anand/flatbufferInstall.md
Install FlatBuffers On Linux
$ git clone https://github.com/google/flatbuffers.git
$ cd flatbuffers
$ cmake -G "Unix Makefiles"
$ make
$ ./flattests # this is quick, and should print "ALL TESTS PASSED"
$ sudo make install #install
$ sudo ldconfig #Configuring a dynamic link library
$ flatc --version #Check if FlatBuffers is installed successfully