mirror of
https://github.com/Z3Prover/z3
synced 2025-04-06 01:24:08 +00:00
Make cmake not emit -fPIC to mingw64 for Windows builds.
This patch detects a mingw64 build of the shared library and does not emit -fPIC to the compiler. This is necessary to avoid a warning message, as Windows native code DLLs are generally relocatable and not position independent.
This commit is contained in:
parent
22097efd4a
commit
5845e63396
|
@ -304,7 +304,10 @@ endif()
|
|||
# library. If not building a shared library ``-fPIC`` isn't needed and would add
|
||||
# unnecessary overhead.
|
||||
if (BUILD_LIBZ3_SHARED)
|
||||
if (NOT MSVC)
|
||||
# Avoid adding -fPIC compiler switch if we compile with MSVC (which does not
|
||||
# support the flag) or if we target Windows, which generally does not use
|
||||
# position independent code for native code shared libraries (DLLs).
|
||||
if (NOT (MSVC OR MINGW OR WIN32))
|
||||
z3_add_cxx_flag("-fPIC" REQUIRED)
|
||||
endif()
|
||||
endif()
|
||||
|
@ -387,4 +390,3 @@ option(ENABLE_EXAMPLE_TARGETS "Build Z3 api examples" ON)
|
|||
if (ENABLE_EXAMPLE_TARGETS)
|
||||
add_subdirectory(examples)
|
||||
endif()
|
||||
|
||||
|
|
Loading…
Reference in a new issue