libtool-commit
[Top][All Lists]
Advanced

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

branch master updated: libtool: fix Solaris 11 builds


From: Mike Frysinger
Subject: branch master updated: libtool: fix Solaris 11 builds
Date: Wed, 17 Jan 2024 01:36:58 -0500

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

vapier pushed a commit to branch master
in repository libtool.

The following commit(s) were added to refs/heads/master by this push:
     new b67d1a2d libtool: fix Solaris 11 builds
b67d1a2d is described below

commit b67d1a2db842c01c051c7e90d7f4c18928d8b555
Author: Oliver Kiddle <okiddle@yahoo.co.uk>
AuthorDate: Wed Aug 17 08:27:43 2016 -0400

    libtool: fix Solaris 11 builds
    
    Trying to build clamav on Solaris 11.3 with the Oracle C compiler,
    I got the following error:
    
    libtool: error: not configured to extract global symbols from dlpreopened 
files
    
    I would have expected a build to use dlopen rather than the preopen
    fallback so looked for related configure tests that were perhaps
    returning the wrong answer.
    
    The global_symbol_pipe being empty seemed a likely culprit.
    the last three lines of nm -p on the conftest.o in this test are:
    
    0000000032 T main
    0000000016 T nm_test_func
    0000000001 C nm_test_var
    
    On Solaris 10, I'd get a D instead of a C. Adding C to the list of
    characters in the symcode variable and building again resulted in a
    successful build. I've attached a patch to add this C.
    
    Url: https://savannah.gnu.org/patch/?9086
    
    * m4/libtool.m4 (symcode): Add C for solaris.
---
 m4/libtool.m4 | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/m4/libtool.m4 b/m4/libtool.m4
index 7ab5fe57..541ba8a8 100644
--- a/m4/libtool.m4
+++ b/m4/libtool.m4
@@ -3944,7 +3944,7 @@ osf*)
   symcode='[[BCDEGQRST]]'
   ;;
 solaris*)
-  symcode='[[BDRT]]'
+  symcode='[[BCDRT]]'
   ;;
 sco3.2v5*)
   symcode='[[DT]]'



reply via email to

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