From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1P3jDV-0001Af-OB for garchives@archives.gentoo.org; Thu, 07 Oct 2010 05:40:34 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AFDF4E0BE2; Thu, 7 Oct 2010 05:40:08 +0000 (UTC) Received: from mail.gmx.net (mailout-de.gmx.net [213.165.64.22]) by pigeon.gentoo.org (Postfix) with SMTP id 3FE4EE0BE2 for ; Thu, 7 Oct 2010 05:40:07 +0000 (UTC) Received: (qmail invoked by alias); 07 Oct 2010 05:40:07 -0000 Received: from p54851747.dip0.t-ipconnect.de (EHLO gmx.net) [84.133.23.71] by mail.gmx.net (mp040) with SMTP; 07 Oct 2010 07:40:07 +0200 X-Authenticated: #20088476 X-Provags-ID: V01U2FsdGVkX1/mYR98wnPmMcQZjIVN4UhvcL+3OXYmlBxSs34QFB UMFIvLVtlR4HhL Received: by gmx.net (nbSMTP-1.00) for uid 1001 Meino.Cramer@gmx.de; Thu, 7 Oct 2010 07:40:06 +0200 (CEST) Date: Thu, 7 Oct 2010 07:40:05 +0200 From: meino.cramer@gmx.de To: gentoo-user@lists.gentoo.org Subject: Re: [gentoo-user] seq24 fails to comoile Message-ID: <20101007054005.GA20206@solfire> References: <20101007024354.GA5624@solfire> <20101007052740.GB17511@waltdnes.org> Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-user@lists.gentoo.org Reply-to: gentoo-user@lists.gentoo.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20101007052740.GB17511@waltdnes.org> User-Agent: mutt-ng/devel-r804 (Linux) X-Y-GMX-Trusted: 0 X-Archives-Salt: 8e6d4a87-1839-4164-888e-46dc206be955 X-Archives-Hash: 9a4e84f48cd0db1fc2880c3f813badb0 Walter Dnes [10-10-07 07:32]: > On Thu, Oct 07, 2010 at 04:43:55AM +0200, meino.cramer@gmx.de wrote > > > ================================================================= > > System Settings > > ================================================================= > > > > CFLAGS="-march=amdfam10 -O2 -pipe -msse3" > > Let the compiler figure out the CPU. Change that line to... > CFLAGS="-march=native -O2 -pipe" > > > CXXFLAGS="-march=amdfam10 -O2 -pipe -msse3" > > The recommended way of doing things here is... > > CXXFLAGS="${CFLAGS}" > > ...which exactly copies whatever settings you have there. > Synchronization between CFLAGS and CXXFLAGS becomes automatic this way. > > > MAKEOPTS="-j 12" > > Arrrrrrrrgh Nooooooooo!!! That's probably your problem right there. > The recommendation in the manual is N+1, where N == number of cores. Do > you have 11 or more cores? I find that even that isn't always safe. I > set... > > MAKEOPTS="-j 1" > > and it solves quite a few problems. Note that the final binary is just > as fast, regardless of that setting. The compile speed is somewhat > faster with a higher number. But you quickly lose any "time savings" > from that, the first time you waste several hours trying to figure out > why something isn't compiling. MAKEOPTS="-j 1" should be mandatory. > > -- > Walter Dnes > Hi Walter, thank you for your help, I made the changes you suggested and now got an different error ... it still does not compile. Here is the output: x86_64-pc-linux-gnu-g++ -DHAVE_CONFIG_H -I. -pthread -I/usr/include/gtkmm-2.4 -I/usr/lib64/gtkmm-2.4/include -I/usr/include/giomm-2.4 -I/usr/lib64/giomm-2.4/include -I/usr/include/pangomm-1.4 -I/usr/lib64/pangomm-1.4/include -I/usr/include/gtk-2.0 -I/usr/include/gtk-unix-print-2.0 -I/usr/include/atkmm-1.6 -I/usr/include/gdkmm-2.4 -I/usr/lib64/gdkmm-2.4/include -I/usr/include/glibmm-2.4 -I/usr/lib64/glibmm-2.4/include -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sigc++-2.0 -I/usr/lib64/sigc++-2.0/include -I/usr/include/cairomm-1.0 -I/usr/include/pango-1.0 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng14 -I/usr/lib64/gtk-2.0/include -I/usr/include/atk-1.0 -Wall -march=native -O2 -pipe -msse3 -MT mainwnd.o -MD -MP -MF .deps/mainwnd.Tpo -c -o mainwnd.o mainwnd.cpp mainwnd.cpp: In member function 'void mainwnd::file_import_dialog()': mainwnd.cpp:531: error: invalid conversion from 'Gtk::ButtonBox*' to 'Gtk::HButtonBox*' make[2]: *** [mainwnd.o] Error 1 To not to pollute the mailing list again with a dozen of outputs and logs I haven't attached those to this different posting. If you need a certain file/log/output or whatever to fix this, please let me now! :) Best regards, mcc