mirror of
https://github.com/reactos/CMake.git
synced 2024-12-05 02:06:34 +00:00
f320907b3d
The valid settings to pass to the IBM XL compiler for the -qhalt flag vary widely by language and platform. Based on existing documentation, the following table shows which error levels are valid to pass to -qhalt= since -qhalt=e is not always available. OS | xlc | xlC | xlf | ---------|-------|------------------ AIX | iwes | iw s | ilwesu | BlueGene | iwes | iwes | ilwesu | OS X | iwesu | iwesu | ilwesu | Linux | w | w | ilwesu |
6 lines
146 B
CMake
6 lines
146 B
CMake
include(Platform/AIX-XL)
|
|
__aix_compiler_xl(CXX)
|
|
|
|
# -qhalt=s = Halt on severe error messages
|
|
string(APPEND CMAKE_CXX_FLAGS_INIT " -qhalt=s")
|