How to install fbec compiler for macos
Please update the documentation clearly on how to install the fbec compiler to generate the domain model.
Currently it says:
brew install flex bison
git clone https://github.com/chronoxor/FastBinaryEncoding.git
cd FastBinaryEncoding
gil updatepip3 install gil
cd build
./unix.sh
I did above all steps, but at the end its gives me following error:
[BISON][parser] Building parser with bison 2.3
/Library/Developer/CommandLineTools/usr/bin/bison: invalid option -- W
Try `/Library/Developer/CommandLineTools/usr/bin/bison --help' for more information.
make[2]: *** [/Users/ohmpatel/FastBinaryEncoding/source/fbe-parser.cpp] Error 1
make[1]: *** [CMakeFiles/fbec.dir/all] Error 2
make[1]: *** Waiting for unfinished jobs....
I followed this documentation: https://chronoxor.github.io/FastBinaryEncoding/
I am using M1.
You need bison 3.8.x:
https://github.com/chronoxor/FastBinaryEncoding/actions/runs/4092288146/jobs/7056910153
I did brew install flex bison, as mentioned in the doc.
3.8.2 is already installed.

@chronoxor can u please help me out
3.8.2 is already installed.
You need to update the $PATH to use the brew-version bison
export PATH=$(brew --prefix bison)/bin:$PATH