You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 31, 2023. It is now read-only.
Following the instruction, I build Z3 first and then go get this project. However, there is an error saying:
mitchellh\[email protected]\ast.go:4:
./go-z3.h:11:10: fatal error: z3.h: No such file or directory
#include <z3.h>
^~~~~~
Thanks a lot for answering.
The text was updated successfully, but these errors were encountered:
As shown at the above link, you should only need to do git clone of this repo followed by make. If you're manually building z3 and then doing a go get, that's not likely to work because among other things your include path isn't going to be set, which would cause the inability to find z3.h.
Yes. I first manually build z3 on Windows, and go get this repo.
So I follow your way, just git clone this repo and make.
However, the error still exists as shown in the figure. Then I manually use vs command prompt with command: 1) cd ./vendor/z3/build 2) nmake;
Then, I still can't run the example.go. The IDE said it can't find the file libz3.a.
Thanks for answering. I am just curious that is this repo still working now? Or I need to build another go-z3.
Following the instruction, I build Z3 first and then go get this project. However, there is an error saying:
mitchellh\[email protected]\ast.go:4:
./go-z3.h:11:10: fatal error: z3.h: No such file or directory
#include <z3.h>
^~~~~~
Thanks a lot for answering.
The text was updated successfully, but these errors were encountered: