mirror of
https://github.com/Z3Prover/z3
synced 2025-04-11 19:53:34 +00:00
5 lines
234 B
Bash
5 lines
234 B
Bash
# Note: Z3 was built using C++, so libz3.a has C++ dependencies.
|
|
# You can use gcc to link the program, but you need tell it
|
|
# to link the C++ libraries
|
|
g++ -fopenmp -I../../include maxsat.c ../../lib/libz3.a -o maxsat
|