mirror of
https://github.com/reactos/CMake.git
synced 2024-12-05 10:16:50 +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 |
9 lines
297 B
CMake
9 lines
297 B
CMake
# Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
# file Copyright.txt or https://cmake.org/licensing for details.
|
|
|
|
|
|
__BlueGeneQ_setup_static(XL C)
|
|
|
|
# -qhalt=e = Halt on error messages (rather than just severe errors)
|
|
string(APPEND CMAKE_C_FLAGS_INIT " -qhalt=e")
|