From owner-freebsd-chromium@FreeBSD.ORG Sun Mar 27 20:33:30 2011 Return-Path: Delivered-To: freebsd-chromium@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 222C41065670 for ; Sun, 27 Mar 2011 20:33:30 +0000 (UTC) (envelope-from r.c.ladan@gmail.com) Received: from mail-ew0-f54.google.com (mail-ew0-f54.google.com [209.85.215.54]) by mx1.freebsd.org (Postfix) with ESMTP id 9EB438FC0A for ; Sun, 27 Mar 2011 20:33:29 +0000 (UTC) Received: by ewy1 with SMTP id 1so1093631ewy.13 for ; Sun, 27 Mar 2011 13:33:28 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:sender:message-id:date:from:organization :user-agent:mime-version:to:cc:subject:references:in-reply-to :x-enigmail-version:content-type; bh=NjX35mDH4Ao3G18vKfqDX14aRsBV0CeK0hVlNGUL98Y=; b=QrtJOv9R2EI195Z1x3ekvHP1/W2zk+e3i1F/l6fcbwIS9blYIPBrwidw9xdavTGKlO Q8/Jw7WQO1kFMAS7qnSxAcjYR14cLrXUCD8yWr0OlonbYskAHMHZgmNH21DLlRDC9Qo+ qVyZuyJSYUMWIqC+LbjThtD0Y14gyWHVALYfI= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=sender:message-id:date:from:organization:user-agent:mime-version:to :cc:subject:references:in-reply-to:x-enigmail-version:content-type; b=oiPEtq7BBW6Jv9yRbO5OvG5CLhcPxi6xuhBfeeP/ujxq8ORTBrKjlIaA+NtW3BkvpR LOeUzQ3mM6f27REaVAoS9s3EVlD4FGrAhSD0T6v6PgLnwF/KZmgHqixiGd88Wh/2zaX4 z0dHkVAW1fJPo2GUDkY5KbUS4ecdzEWq9Leeo= Received: by 10.14.50.196 with SMTP id z44mr1361590eeb.227.1301258008261; Sun, 27 Mar 2011 13:33:28 -0700 (PDT) Received: from [192.168.1.12] (ip18-43-209-87.adsl2.static.versatel.nl [87.209.43.18]) by mx.google.com with ESMTPS id x54sm2261718eeh.12.2011.03.27.13.33.26 (version=TLSv1/SSLv3 cipher=OTHER); Sun, 27 Mar 2011 13:33:27 -0700 (PDT) Sender: =?UTF-8?Q?Ren=C3=A9_Ladan?= Message-ID: <4D8F9F15.6010100@freebsd.org> Date: Sun, 27 Mar 2011 22:33:25 +0200 From: Rene Ladan Organization: The FreeBSD Project User-Agent: Mozilla/5.0 (X11; U; FreeBSD amd64; nl-NL; rv:1.9.2.15) Gecko/20110305 Thunderbird/3.1.9 MIME-Version: 1.0 To: freebsd-chromium@freebsd.org References: <4D8F255F.9080605@freebsd.org> In-Reply-To: <4D8F255F.9080605@freebsd.org> X-Enigmail-Version: 1.1.2 Content-Type: multipart/mixed; boundary="------------050501030205090105030702" Cc: "Y. A." Subject: Re: fixes for Makefile pkg-plist and build-in ffmpeg X-BeenThere: freebsd-chromium@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD-specific Chromium issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Mar 2011 20:33:30 -0000 This is a multi-part message in MIME format. --------------050501030205090105030702 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit Op 27-03-2011 13:54, Rene Ladan schreef: [..] > My 8.2-STABLE i386 tinderbox complains about unrecognized instructions > (pabsw, pmulhrsw, palignr) during the build and decides to give up > prematurely. This is with: > [..] > Full log at > http://rene-ladan.nl:8080/tb/errors/8-FreeBSD/chromium-10.0.648.204.log > > Maybe this is binutils related (that build uses 2.15 since there is no > dependency on binutils from ports). > A (partial) patch for this is attached. I guess some gyp files need to be updated too? Regards, René -- http://www.rene-ladan.nl:8080/ GPG fingerprint = ADBC ECCD EB5F A6B4 549F 600D 8C9E 647A E564 2BFC (subkeys.pgp.net) --------------050501030205090105030702 Content-Type: text/plain; name="binutils-1.diff" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="binutils-1.diff" Index: Makefile =================================================================== --- Makefile (revision 126) +++ Makefile (working copy) @@ -51,6 +51,12 @@ LICENSE_COMB= multi LICENSE= BSD LGPL21 MPL +.include + +.if ${OSVERSION} < 900033 +USE_BINUTILS= yes +.endif + DESKTOP_ENTRIES="Chromium" "${COMMENT}" "${DATADIR}/product_logo_48.png" \ "chrome" "Application;Network;WebBrowser;" true @@ -168,4 +174,4 @@ cd ${WRKSRC}/out/${BUILDTYPE} && ${COPYTREE_SHARE} "locales resources" ${DATADIR} ${LN} -sf ${DATADIR}/chrome ${PREFIX}/bin/ -.include +.include --------------050501030205090105030702--