From owner-freebsd-ports@FreeBSD.ORG Sat Jan 7 15:50:33 2006 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BCCC416A41F for ; Sat, 7 Jan 2006 15:50:33 +0000 (GMT) (envelope-from danny@ricin.com) Received: from smtpq2.groni1.gr.home.nl (smtpq2.groni1.gr.home.nl [213.51.130.201]) by mx1.FreeBSD.org (Postfix) with ESMTP id CA51043D55 for ; Sat, 7 Jan 2006 15:50:26 +0000 (GMT) (envelope-from danny@ricin.com) Received: from [213.51.130.188] (port=56990 helo=smtp3.groni1.gr.home.nl) by smtpq2.groni1.gr.home.nl with esmtp (Exim 4.30) id 1EvGKm-0000Ll-4p; Sat, 07 Jan 2006 16:50:24 +0100 Received: from cp464173-a.dbsch1.nb.home.nl ([84.27.215.228]:55542 helo=desktop.homenet) by smtp3.groni1.gr.home.nl with esmtp (Exim 4.30) id 1EvGKl-00006E-1Q; Sat, 07 Jan 2006 16:50:23 +0100 From: Danny Pansters To: freebsd-ports@freebsd.org Date: Sat, 7 Jan 2006 16:48:11 +0000 User-Agent: KMail/1.8.3 X-Face: :N, f2_*44g[tRY8Y-gL2zi`G|<6SpFjTeHt|V5LO6Yl2E7yAfEh{E6-8pqxUFX"l)=?utf-8?q?Nm8y=7E=0A=09IWJSAWQ=7D+=3DpP=7CT=5D?=@sy1sz%h)*CW6gtbp]"fe@MjICtIUo.0, CH~{[R4PXSyL MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200601071648.12195.danny@ricin.com> X-AtHome-MailScanner-Information: Please contact support@home.nl for more information X-AtHome-MailScanner: Found to be clean Cc: danny@ricin.com Subject: How to solve sparc64-7 build problem (x11-toolkits/py-kde)? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 07 Jan 2006 15:50:33 -0000 Pointyhat: c++ -c -Wno-deprecated-declarations -pipe -fPIC -O2 -fno-strict-aliasing -pipe -Wall -W -DQT_NO_DEBUG -DQT_THREAD_SUPPORT -I. -I../extra/kde340 -I/usr/local/include -I/usr/local/include/python2.4 -I/usr/X11R6/include -o sipkdeuipart0.o sipkdeuipart0.cpp sip/kdeui/kkeydialog.sip: In function `PyObject* convertFrom_IntDict(void*)': sip/kdeui/kkeydialog.sip:209: warning: taking address of temporary {standard input}: Assembler messages: {standard input}:350020: Warning: end of file not at end of a line; newline inserted {standard input}:350820: Error: unknown pseudo-op: `.globa' c++: Internal error: Killed: 9 (program cc1plus) Please submit a full bug report. See for instructions. *** Error code 1 I don't have access to any sparc64 hardware. The following are OK: i386-7 , ia64-7 [Dec 11] (amd64-7 unknown) Also OK are: i386-6 [Dec28], ia64-6 [Dec 20], amd64-6 [Oct 28], _and_ sparc64-6 [Dec 22] During configure of PyKDE, C++ code is generated from SIP code for every module and to speed up compiling everything is concatenated into one huge sourcefile per module. Except for the largest module, kdeui the one in the build failure above, that is by default split into two parts. In order to make this port compile on non-i386 I have in the past added -j2 as a configure switch for them so that for every module the big cpp file is split in two. That seemed to work, until now for sparc64 on -CURRENT. Are the chunks just too big and should I use -j3 or 4 instead? As you may guess I've never touched anything non-i386 and pretty clueless :) Thanks, Dan