Replies: 2 comments 1 reply
-
After tedious work to compile a |
Beta Was this translation helpful? Give feedback.
0 replies
-
maybe a template dependency issue? |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello, I'm trying to build LLVM which depends on Z3 which needs modern C++ features so my ancient Apple-supplied
clang
won't work, and I usegcc-12
instead. Yet the build fails.First with CMake build (which is what Homebrew's script uses), and now with manual Python build, the problem is the same - in the final stages of the build, some symbols with alien-looking names cannot be found. I see nothing resembling
__ZN20pattern_inference_rwD1Ev
in the offendingsat_smt.h
orq_solver.cpp
and am totally confused.I can open a fresh shell and
g++-12 -o z3 blahblah
myself and get the same error, so it's unlikely that Homebrew'ssuperenv
caused this. Any idea how I may resolve this on my side? Thanks in advance.Beta Was this translation helpful? Give feedback.
All reactions