From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 22406 invoked by alias); 5 Dec 2014 00:24:35 -0000 Mailing-List: contact crossgcc-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: crossgcc-owner@sourceware.org Received: (qmail 22385 invoked by uid 89); 5 Dec 2014 00:24:31 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.8 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_NONE,SPF_PASS,T_RP_MATCHES_RCVD autolearn=ham version=3.3.2 X-HELO: XCS01CO.watchguard.com Received: from mx1.watchguard.com (HELO XCS01CO.watchguard.com) (206.191.171.101) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 05 Dec 2014 00:24:30 +0000 From: Dan Wilder To: "crossgcc@sourceware.org" Subject: RE: Announce: Revisiting Patchwork (aka, if you have a patch in patchwork, your attention is ***required***!) Date: Fri, 05 Dec 2014 00:24:00 -0000 Message-ID: <13D890DAAABFB44887D834721D06CF4B0161C31AAD@mbx1.wgti.net> References: In-Reply-To: Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Received-SPF: none X-SW-Source: 2014-12/txt/msg00009.txt.bz2 Any unwind patches for ppc in glibc-2.19? A small c++ program fails nicely on 32-bit ppc: ---------------------------------------------------------------------------= --------------- #include static void cause_exn(void) { std::cout << "cause_exn invoked" << std::endl; throw 20; std::cout << "cause_exn done" << std::endl; } int main(int argc, char **argv) { std::cout << "Starting" << std::endl; try { cause_exn(); } catch (int e) { std::cout << "Caught exception " << e << std::endl; } std::cout << "Exiting" << std::endl; return 0; } ---------------------------------------------------------------------------= -------------------- Expected output is: Starting cause_exn invoked Caught exception 20 Exiting on 32-bit ppc with glibc-2.19/gcc-4.8.3: Starting cause_exn invoked Aborted (core dumped) Have done some preliminary work and will have a patch for the list in a few= weeks, but it would be a shame if somebody else has already gone there! ppc_64 works fine. As does x86, x86_64 on the same test program. -- Dan Wilder Btw thanks Bryan for taking the cross-gcc helm and thanks Yann for the exce= llent work! -- For unsubscribe information see http://sourceware.org/lists.html#faq