diff options
author | Brad King <brad.king@kitware.com> | 2018-01-24 15:34:53 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2018-01-24 19:31:53 (GMT) |
commit | c4dc6485eb3bd51fdc88eee03218b9755c373282 (patch) | |
tree | a4ca3c8f7e62e39769eae44524643ef8a90c7bde /Modules | |
parent | e342e4100a597dc8a7f94c55409e619a4848754f (diff) | |
download | CMake-c4dc6485eb3bd51fdc88eee03218b9755c373282.zip CMake-c4dc6485eb3bd51fdc88eee03218b9755c373282.tar.gz CMake-c4dc6485eb3bd51fdc88eee03218b9755c373282.tar.bz2 |
XL: Enable use of response files for includes and objects
The IBM XL compiler supports response files via `-qoptfile=<file>`
instead of `@<file>`.
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/Compiler/XL.cmake | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Modules/Compiler/XL.cmake b/Modules/Compiler/XL.cmake index 4783785..e527a04 100644 --- a/Modules/Compiler/XL.cmake +++ b/Modules/Compiler/XL.cmake @@ -20,6 +20,8 @@ macro(__compiler_xl lang) # Feature flags. set(CMAKE_${lang}_VERBOSE_FLAG "-V") set(CMAKE_${lang}_COMPILE_OPTIONS_PIC "-qpic") + set(CMAKE_${lang}_RESPONSE_FILE_FLAG "-qoptfile=") + set(CMAKE_${lang}_RESPONSE_FILE_LINK_FLAG "-qoptfile=") string(APPEND CMAKE_${lang}_FLAGS_DEBUG_INIT " -g") string(APPEND CMAKE_${lang}_FLAGS_RELEASE_INIT " -O") |