mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 01:59:02 +00:00
Cmake build: Warning if system boost and stdlib-debug are used together
Change according to commit d95c187b5
This commit is contained in:
parent
d95c187b5a
commit
0c3624e36a
@ -662,6 +662,13 @@ if(LYX_EXTERNAL_BOOST)
|
|||||||
message(STATUS "Boost found")
|
message(STATUS "Boost found")
|
||||||
message(STATUS "Boost-libs = ${Boost_LIBRARIES}")
|
message(STATUS "Boost-libs = ${Boost_LIBRARIES}")
|
||||||
set(Lyx_Boost_Libraries ${Boost_LIBRARIES})
|
set(Lyx_Boost_Libraries ${Boost_LIBRARIES})
|
||||||
|
if (LYX_STDLIB_DEBUG)
|
||||||
|
# Comment from Jean-Marc Lasgouttes:
|
||||||
|
# In general, system boost libraries are incompatible with
|
||||||
|
# the use of stdlib-debug in libstdc++. See ticket #9736 for
|
||||||
|
# details.
|
||||||
|
message(WARNING "Compiling LyX with stdlib-debug and system boost libraries may lead to crashes. Consider using '-DLYX_STDLIB_DEBUG=OFF' or using '-DLYX_EXTERNAL_BOOST=OFF'")
|
||||||
|
endif()
|
||||||
else()
|
else()
|
||||||
message(FATAL_ERROR "Boost not found" ${Boost_ERROR_REASON})
|
message(FATAL_ERROR "Boost not found" ${Boost_ERROR_REASON})
|
||||||
endif()
|
endif()
|
||||||
|
Loading…
Reference in New Issue
Block a user