From: Karl Berry Date: Sun, 10 Dec 2023 17:57:53 +0000 (-0800) Subject: automake: pass OBJC and OBJCXX tags to libtool. X-Git-Tag: v1.16i~5 X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=38f2f397f7995c7e649697af6140ec038dd3d454;p=thirdparty%2Fautomake.git automake: pass OBJC and OBJCXX tags to libtool. This helps https://bugs.gnu.org/67539. * bin/automake.in : pass libtool_flag of OBJC and OBJCXX for the respective languages. --- diff --git a/bin/automake.in b/bin/automake.in index 820d0d541..0a9b4a3e2 100644 --- a/bin/automake.in +++ b/bin/automake.in @@ -739,6 +739,7 @@ register_language ('name' => 'objc', 'compiler' => 'OBJCCOMPILE', 'compile_flag' => '-c', 'output_flag' => '-o', + 'libtool_flag' => 'OBJC', 'lder' => 'OBJCLD', 'ld' => '$(OBJC)', 'pure' => 1, @@ -757,6 +758,7 @@ register_language ('name' => 'objcxx', 'compiler' => 'OBJCXXCOMPILE', 'compile_flag' => '-c', 'output_flag' => '-o', + 'libtool_flag' => 'OBJCXX', 'lder' => 'OBJCXXLD', 'ld' => '$(OBJCXX)', 'pure' => 1,