3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-15 05:18:44 +00:00
z3/test_capi/build.sh
Leonardo de Moura 6ffaadd498 Fixed gcc compilation bug, add exec flag
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
2012-10-11 00:42:24 -07:00

10 lines
351 B
Bash
Executable file

if gcc -fopenmp -o test_capi test_capi.c -lz3; then
echo "test_capi applicatio was successfully compiled."
echo "To try it, execute:"
echo " ./test_capi"
else
echo "You must install Z3 before compiling this example."
echo "To install Z3, execute the following command in the Z3 root directory."
echo " sudo make install"
fi