From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 18841 invoked by alias); 15 Feb 2011 20:30:29 -0000 Received: (qmail 18831 invoked by uid 22791); 15 Feb 2011 20:30:28 -0000 X-SWARE-Spam-Status: No, hits=-2.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 X-Spam-Check-By: sourceware.org Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Tue, 15 Feb 2011 20:30:24 +0000 From: "jakub at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libfortran/47757] New: Unintentionally? not exported _gfortran_* symbols in libgfortran.so.3 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libfortran X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: jakub at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Changed-Fields: Message-ID: X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated Content-Type: text/plain; charset="UTF-8" MIME-Version: 1.0 Date: Tue, 15 Feb 2011 20:58:00 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org X-SW-Source: 2011-02/txt/msg01861.txt.bz2 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=47757 Summary: Unintentionally? not exported _gfortran_* symbols in libgfortran.so.3 Product: gcc Version: 4.6.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: libfortran AssignedTo: unassigned@gcc.gnu.org ReportedBy: jakub@gcc.gnu.org On x86_64-linux readelf -Ws libgfortran.so.3 | grep LOCAL.*_gfortran | grep -v _gfortrani | awk '{print $8}' | sort -u command gives: _gfortran_cshift0_16_char4 _gfortran_eoshift0_16_char4 _gfortran_eoshift2_16_char4 _gfortran_miall_i1 _gfortran_miall_i16 _gfortran_miall_i2 _gfortran_miall_i4 _gfortran_miall_i8 _gfortran_miany_i1 _gfortran_miany_i16 _gfortran_miany_i2 _gfortran_miany_i4 _gfortran_miany_i8 _gfortran_miparity_i1 _gfortran_miparity_i16 _gfortran_miparity_i2 _gfortran_miparity_i4 _gfortran_miparity_i8 _gfortran_siall_i1 _gfortran_siall_i16 _gfortran_siall_i2 _gfortran_siall_i4 _gfortran_siall_i8 _gfortran_siany_i1 _gfortran_siany_i16 _gfortran_siany_i2 _gfortran_siany_i4 _gfortran_siany_i8 _gfortran_siparity_i1 _gfortran_siparity_i16 _gfortran_siparity_i2 _gfortran_siparity_i4 _gfortran_siparity_i8 are they not exported from libgfortran.so.3 intentionally or is it just an omission in gfortran.map? For *iall*/*iany*/*iparity* it seems they non-s/m variant has been added recently, so maybe just an omission, for the *char4 symbols I have no idea.