From owner-freebsd-hackers@FreeBSD.ORG Thu Dec 8 09:58:07 2011 Return-Path: Delivered-To: freebsd-hackers@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 836DA106564A for ; Thu, 8 Dec 2011 09:58:07 +0000 (UTC) (envelope-from tevans.uk@googlemail.com) Received: from mail-vx0-f182.google.com (mail-vx0-f182.google.com [209.85.220.182]) by mx1.freebsd.org (Postfix) with ESMTP id 3D7A98FC08 for ; Thu, 8 Dec 2011 09:58:07 +0000 (UTC) Received: by vcbfk1 with SMTP id fk1so2151773vcb.13 for ; Thu, 08 Dec 2011 01:58:06 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=CMQs5iYqVbA22vGYCQvlsbEHfOsVKlLl9swD5YJFl0o=; b=t23CrpN3/3IFwuvf7x1OsmwAi4IOSl/+RISTc3dIeLmQV6LzvB601jPn2MXmuTnzNj +CLA7LpYWkxFpgFrEw3PPvbip7iPDQY2Xzoj6JjjZcpCg8nlQOG6+BbhE9swtGPS3M8E JnCcK+xek+FC9vg6EKlQT2aQuKsyZ+t+C+et8= MIME-Version: 1.0 Received: by 10.52.117.65 with SMTP id kc1mr1144513vdb.66.1323338286531; Thu, 08 Dec 2011 01:58:06 -0800 (PST) Received: by 10.52.172.240 with HTTP; Thu, 8 Dec 2011 01:58:06 -0800 (PST) In-Reply-To: <4EE0539E.3030406@herveybayaustralia.com.au> References: <4EDEB600.9000102@herveybayaustralia.com.au> <4EDF4703.1050705@herveybayaustralia.com.au> <4EDF5253.5060201@herveybayaustralia.com.au> <20111207114756.48295690@mikmeyer-vm-fedora> <4EDFE933.3060708@herveybayaustralia.com.au> <4EDFE9BD.9020105@herveybayaustralia.com.au> <4EE0539E.3030406@herveybayaustralia.com.au> Date: Thu, 8 Dec 2011 09:58:06 +0000 Message-ID: From: Tom Evans To: Da Rock Content-Type: text/plain; charset=UTF-8 Cc: freebsd-hackers@freebsd.org Subject: Re: [SOLVED]Re: 64bit build errors - use gcc46 X-BeenThere: freebsd-hackers@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Technical Discussions relating to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 08 Dec 2011 09:58:07 -0000 On Thu, Dec 8, 2011 at 6:05 AM, Da Rock wrote: > > Just to let the list know, I changed as - ./configure > --as=/usr/local/bin/as. I still had the exact same error oddly enough. > > I then had to install gcc46; and the error changed. > > I then had to update the configure script to comment out the v4l videodev > headers (weird). Bingo! I had success. > > So, it begs the question did the as option change things? Or does gcc46 > imply the use of it anyway? > > I'll have to try again without the option to see for sure, but for now I > have another project that I need to keep the status quo for. Yes, sometimes as is invoked via gcc, and if you are using the stock gcc, it uses the stock as, and you still get the errors. You need both gcc46 and binutils from ports. Sorry, forgot that bit :o Cheers Tom