automake-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[automake-commit] branch master updated: automake: pass OBJC and OBJCXX


From: Karl Berry
Subject: [automake-commit] branch master updated: automake: pass OBJC and OBJCXX tags to libtool.
Date: Sun, 10 Dec 2023 12:58:05 -0500

This is an automated email from the git hooks/post-receive script.

karl pushed a commit to branch master
in repository automake.

View the commit online:
https://git.savannah.gnu.org/gitweb/?p=automake.git;a=commitdiff;h=38f2f397f7995c7e649697af6140ec038dd3d454

The following commit(s) were added to refs/heads/master by this push:
     new 38f2f397f automake: pass OBJC and OBJCXX tags to libtool.
38f2f397f is described below

commit 38f2f397f7995c7e649697af6140ec038dd3d454
Author: Karl Berry <karl@freefriends.org>
AuthorDate: Sun Dec 10 09:57:53 2023 -0800

    automake: pass OBJC and OBJCXX tags to libtool.
    
    This helps https://bugs.gnu.org/67539.
    
    * bin/automake.in <register_language>: pass libtool_flag
    of OBJC and OBJCXX for the respective languages.
---
 bin/automake.in | 2 ++
 1 file changed, 2 insertions(+)

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,



reply via email to

[Prev in Thread] Current Thread [Next in Thread]