From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 9302 invoked by alias); 17 Mar 2011 13:35:43 -0000 Received: (qmail 9258 invoked by uid 22791); 17 Mar 2011 13:35:43 -0000 X-SWARE-Spam-Status: No, hits=-2.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00,TW_YM 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; Thu, 17 Mar 2011 13:35:38 +0000 From: "Denis.Excoffier at airbus dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug bootstrap/48135] build fails on Solaris2.8 due to Glob.pm not found within /usr/perl5 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: bootstrap X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: Denis.Excoffier at airbus dot com X-Bugzilla-Status: RESOLVED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated Content-Type: text/plain; charset="UTF-8" MIME-Version: 1.0 Date: Thu, 17 Mar 2011 13:51: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-03/txt/msg01838.txt.bz2 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=48135 --- Comment #7 from Denis Excoffier 2011-03-17 13:35:30 UTC --- Conclusion for the build under Solaris2.8, from my point of view, and compared to the build of gcc-4.5.2 (languages C and C++): - as perl 5.6.1 (or higher) is not directly available under solaris2.8 (and i would prefer not to install it), the "Installation instructions" recommend to use --disable-symvers (so we'll also abandon symbol versioning) - --disable-symvers does not work for the sub-folder libgomp (see previous comment). Instead, you have to replace (manually) "enable_symvers=sun" with "enable_symvers=no" in libgomp/configure - --disable-symvers works (presumably) for the sub-folder libstdc++-v3 - --disable-symvers has simply no effect in the sub-folder libssp. However, you obtain the desired result if you replace (manually) "ssp_use_symver=sun" with "ssp_use_symver=no" in libssp/configure With these pre-bootstrap steps, it should work. After many tests, the resulting compiler seems working and usable. For a cleaner gcc-4.6.0.tar.bz2, feel free to upgrade the Installation instructions (see also above), and/or libgomp/configure and/or libssp/configure.