Skip to content
Snippets Groups Projects
Commit 6604565c authored by Christoph Alt's avatar Christoph Alt
Browse files

some typo in error message and reformatting

parent 4f0ea409
No related merge requests found
......@@ -9,12 +9,21 @@ add_flag(CMAKE_CXX_FLAGS "-qpic=large")
# Silences compiler and linker warnings and information with the IBM compiler
add_flag(CMAKE_CXX_FLAGS "-qsuppress=1586-267") # 1586-267 (I) Inlining of
# specified subprogram failed due to the presence of a C++ exception handler
# specified subprogram failed
# due to the presence of a C++
# exception handler
add_flag(CMAKE_CXX_FLAGS "-qsuppress=1586-266") # 1586-266 (I) Inlining of
# specified subprogram failed due to the presence of a global label
# specified subprogram failed
# due to the presence of a
# global label
add_flag(CMAKE_CXX_FLAGS "-qsuppress=1500-030") # 1500-030: (I) INFORMATION:
# [...] Additional optimization may be attained by recompiling and specifying
# MAXMEM option with a value greater than 8192.
add_flag(CMAKE_C_FLAGS "-qsuppress=1500-030") # 1500-030: (I) INFORMATION:
# [...] Additional optimization may be attained by recompiling and specifying
# MAXMEM option with a value greater than 8192.
# [...] Additional optimization
# may be attained by recompiling
# and specifying MAXMEM option
# with a value greater than
# 8192.
add_flag(CMAKE_C_FLAGS "-qsuppress=1500-030") # 1500-030: (I) INFORMATION: [...]
# Additional optimization may be
# attained by recompiling and
# specifying MAXMEM option with a
# value greater than 8192.
message(STATUS "Setting Cray specific compiler options")
message(STATUS "Setting PGI specific compiler options")
# Silences compiler and linker warnings and information with the PGI compiler
add_flag(CMAKE_CXX_FLAGS "--display_error_number")
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment