From owner-freebsd-ports@FreeBSD.ORG Wed Jul 11 22:35:45 2007 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 979C316A469 for ; Wed, 11 Jul 2007 22:35:45 +0000 (UTC) (envelope-from schneecrash@gmail.com) Received: from py-out-1112.google.com (py-out-1112.google.com [64.233.166.178]) by mx1.freebsd.org (Postfix) with ESMTP id 4875813C45A for ; Wed, 11 Jul 2007 22:35:45 +0000 (UTC) (envelope-from schneecrash@gmail.com) Received: by py-out-1112.google.com with SMTP id a73so3577379pye for ; Wed, 11 Jul 2007 15:35:44 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:reply-to:sender:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references:x-google-sender-auth; b=scTKN1cRgx7w6Zh+DgRUw3ctM3dhkQkog37KtKUzTAqh3p5bd0ML5H87p8qBezATxI+Wo9rVdXG1aBnRyYSSsXc0fkZuR20VhNZIFQIHyVmltAOSjNLzS5rtoVfsmrDhtJZwvkxmi0q5mpywVB3sVcTvUEjqto+XcJtUWY2peo0= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:reply-to:sender:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references:x-google-sender-auth; b=GOmWM5cFOTV9jCztVU/7BfSVUE9ZN/ZKTffbuFllFjggYkb/6MWRXTYstOlccgSQGfKcppU4kZT/JM+CysHmQBkEUBgPV6gdNShcyQMlJUYupx84B0I3TzUdQJuZLY7iKrzzpfleJq7gOFRDwqvjEBLf7zhnTg93sUk9tVJGJBc= Received: by 10.65.119.14 with SMTP id w14mr6493475qbm.1184193344158; Wed, 11 Jul 2007 15:35:44 -0700 (PDT) Received: by 10.64.150.3 with HTTP; Wed, 11 Jul 2007 15:35:44 -0700 (PDT) Message-ID: <70f41ba20707111535q32cfde90p21f218e128d9bc4c@mail.gmail.com> Date: Wed, 11 Jul 2007 15:35:44 -0700 From: snowcrash+freebsd Sender: schneecrash@gmail.com To: "Yuri Pankov" In-Reply-To: <20070711214025.GD95578@darklight.org.ru> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <70f41ba20707111230y66532185o7fd8a335d7c72694@mail.gmail.com> <20070711214025.GD95578@darklight.org.ru> X-Google-Sender-Auth: 5d07070bf5c4162d Cc: freebsd-ports@freebsd.org Subject: Re: coredump on portupgrade of installed ruby-1.8.6, 1 to ruby-1.8.6_1, 1 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: freebsd-questions@freebsd.org List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Jul 2007 22:35:45 -0000 hi yuri, > > known issue? something /i/ need to do? > > thanks! > > Builds here. Can you try without those extra CFLAGS? per suggestion, changing in my /usr/local/etc/ports.conf *:\ CFLAGS= -O2 -pipe -funroll-loops -s -frename-registers -fomit-frame-pointer | \ CXXFLAGS= -O2 -pipe -funroll-loops -s -frename-registers ... lang/ruby18:\ +++ CFLAGS= -O2 -pipe | \ +++ CXXFLAGS= -O2 -pipe | \ WITHOUT_PTHREADS=true | \ WITHOUT_ONIGURUMA=true | \ WITHOUT_GCPATCH=true | \ WITHOUT_IPV6=true | \ WITHOUT_RDOC=true | \ WITHOUT_DEBUG=true | \ BATCH=Yes ... then (since a prior 'deinstall' of ruby18 while monkeying around with this temporarily killed my 'portinstall' ...), cd /usr/ports/lang/ruby18 make deinstall rmconfig clean install seems to behave itself now, completing without error. and, fwiw, a subsequent, cd /usr/ports/ports-mgmt/portupgrade make deinstall rmconfig install clean which depends on the ruby install, also builds ok. so, it seems that the port version bump from, ruby-1.8.6,1 to, ruby-1.8.6_1,1 introduces a 'sensitivity' to one or more of those C*FLAGS ... as, the prior version built just fine. thanks!