Revision 2 as of 2019-12-09 14:34:21

Clear message

Back to the HomePage.

Setting Up VAL

On Linux, you should be able to set up the VAL plan validation software by following these steps:

   1 sudo apt install g++ make flex bison
   2 git clone https://github.com/KCL-Planning/VAL.git
   3 cd VAL
   4 git checkout a5565396007eee73ac36527fbf904142b3077c74
   5 make clean  # Remove old build artifacts and binaries.
   6 sed -i 's/-Werror //g' Makefile  # Ignore warnings.
   7 make

Don't forget to add the resulting validate binary to your PATH.

Building VAL on Windows

You will need to download Flex and Bison.

Building VAL on macOS

If your compiler doesn't find flex or bison, your include directories might be in a non-standard location. In this case you probably have to specify where to look for includes and libraries in VAL's Makefile (probably /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr).