branch: development commit 63560839d3431e48d9c667b89eb1fc5a131d5745 Author: Ileana Dumitrescu <ileanadumitresc...@gmail.com> AuthorDate: Tue Nov 19 20:58:01 2024 +0200
ltmain.in: Fix handling xlc(1)-specific options Patch supplied on Savannah by user, whr: https://savannah.gnu.org/patch/index.php?10126 --- build-aux/ltmain.in | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build-aux/ltmain.in b/build-aux/ltmain.in index 8cef9e8d..a4fa6280 100644 --- a/build-aux/ltmain.in +++ b/build-aux/ltmain.in @@ -5327,7 +5327,8 @@ func_mode_link () # Tru64 UNIX uses -model [arg] to determine the layout of C++ # classes, name mangling, and exception handling. # Darwin uses the -arch flag to determine output architecture. - -model|-arch|-isysroot|--sysroot) + # -q <option> for IBM XL C/C++ compiler. + -model|-arch|-isysroot|--sysroot|-q) func_append compiler_flags " $arg" func_append compile_command " $arg" func_append finalize_command " $arg"