From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 1222 invoked by alias); 27 Mar 2008 10:24:21 -0000 Received: (qmail 1210 invoked by uid 22791); 27 Mar 2008 10:24:20 -0000 X-Spam-Status: No, hits=-1.4 required=5.0 tests=AWL,BAYES_00,MIME_QP_LONG_LINE X-Spam-Check-By: sourceware.org Received: from wildebeest.demon.nl (HELO gnu.wildebeest.org) (83.160.170.119) by sourceware.org (qpsmtpd/0.31) with ESMTP; Thu, 27 Mar 2008 10:24:01 +0000 Received: from dijkstra.wildebeest.org ([192.168.1.29]) by gnu.wildebeest.org with esmtp (Exim 4.63) (envelope-from ) id 1JepH0-0006Nk-Lc; Thu, 27 Mar 2008 11:23:55 +0100 Subject: Re: Frysk for ppc broken? From: Mark Wielaard To: Carlos Eduardo Seo Cc: Frysk Mailing List In-Reply-To: <47EAF3D2.10901@linux.vnet.ibm.com> References: <47EAF3D2.10901@linux.vnet.ibm.com> Content-Type: text/plain; charset=utf-8 Date: Thu, 27 Mar 2008 10:24:00 -0000 Message-Id: <1206613434.3374.4.camel@dijkstra.wildebeest.org> Mime-Version: 1.0 X-Mailer: Evolution 2.12.3 (2.12.3-3.fc8) Content-Transfer-Encoding: quoted-printable X-Spam-Score: -4.4 (----) X-IsSubscribed: yes Mailing-List: contact frysk-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Post: List-Help: , Sender: frysk-owner@sourceware.org X-SW-Source: 2008-q1/txt/msg00189.txt.bz2 Hi Carlos, On Wed, 2008-03-26 at 22:09 -0300, Carlos Eduardo Seo wrote: > Hello all! >=20 > I was trying to build frysk in my new Fedora 8 box and got this: >=20 > g++ -m64 -mminimal-toc -g -I. -c -o frysk2760/barriertest.o=20 > .../../../frysk/frysk-imports/tests/frysk2760/TestBarrier.cxx > .../../../frysk/frysk-imports/tests/frysk2760/TestBarrier.cxx:64: error:= =20 > =E2=80=98frysk2760=E2=80=99 has not been declared > [...] > Any clues? Looks like TestBarrier.h wasn't generated correctly. It should be in your build dir frysk-obj/frysk-imports/tests/frysk2760/TestBarrier.h It should declare the namespace: extern "Java" { namespace frysk2760 { class TestBarrier; class TestBarrier$BarrierThread; class TestBarrier$ForkThread; class TestBarrier$GCThread; } } If it doesn't then you would get the error you are seeing. I don't know why that would happen though. Cheers, Mark