From: Albert Chin-A-Young Date: Thu, 9 Dec 2004 17:59:39 +0000 (+0000) Subject: * config/ltmain.m4sh: Preserve -model [arg] option, used X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3ff52f78026b06f0e4dc22ffca1721073a6a9e24;p=thirdparty%2Flibtool.git * config/ltmain.m4sh: Preserve -model [arg] option, used with the Tru64 UNIX C++ compiler. This option selects the layout of C++ classes, name mangling, and exception handling. --- diff --git a/ChangeLog b/ChangeLog index 1fdef2c58..4915d669c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2004-12-09 Albert Chin-A-Young + + * config/ltmain.m4sh: Preserve -model [arg] option, used + with the Tru64 UNIX C++ compiler. This option selects the + layout of C++ classes, name mangling, and exception handling. + 2004-12-09 Ralf Wildenhues * config/ltmain.m4sh (func_mode_finish) [solaris]: Fix [] escaping bug. diff --git a/config/ltmain.m4sh b/config/ltmain.m4sh index 8bcb443cb..1341a13fc 100644 --- a/config/ltmain.m4sh +++ b/config/ltmain.m4sh @@ -2609,6 +2609,16 @@ func_mode_link () continue ;; + # Tru64 UNIX uses -model [arg] to determine the layout of C++ + # classes, name mangling, and exception handling. + -model) + compile_command="$compile_command $arg" + compiler_flags="$compiler_flags $arg" + finalize_command="$finalize_command $arg" + prev=xcompiler + continue + ;; + -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe) deplibs="$deplibs $arg" continue