Merge topic 'FindBoost-xl-compiler'
4527b9c4
FindBoost: Add support for IBM XL compiler
This commit is contained in:
commit
59f53f7422
|
@ -464,6 +464,8 @@ function(_Boost_GUESS_COMPILER_PREFIX _ret)
|
||||||
set(_boost_COMPILER "-bcb")
|
set(_boost_COMPILER "-bcb")
|
||||||
elseif(CMAKE_CXX_COMPILER_ID STREQUAL "SunPro")
|
elseif(CMAKE_CXX_COMPILER_ID STREQUAL "SunPro")
|
||||||
set(_boost_COMPILER "-sw")
|
set(_boost_COMPILER "-sw")
|
||||||
|
elseif(CMAKE_CXX_COMPILER_ID STREQUAL "XL")
|
||||||
|
set(_boost_COMPILER "-xlc")
|
||||||
elseif (MINGW)
|
elseif (MINGW)
|
||||||
if(${Boost_MAJOR_VERSION}.${Boost_MINOR_VERSION} VERSION_LESS 1.34)
|
if(${Boost_MAJOR_VERSION}.${Boost_MINOR_VERSION} VERSION_LESS 1.34)
|
||||||
set(_boost_COMPILER "-mgw") # no GCC version encoding prior to 1.34
|
set(_boost_COMPILER "-mgw") # no GCC version encoding prior to 1.34
|
||||||
|
|
Loading…
Reference in New Issue