From owner-freebsd-arm@FreeBSD.ORG Sat Jun 30 17:45:48 2012 Return-Path: Delivered-To: freebsd-arm@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 68D4B1065670 for ; Sat, 30 Jun 2012 17:45:48 +0000 (UTC) (envelope-from tim@kientzle.com) Received: from monday.kientzle.com (99-115-135-74.uvs.sntcca.sbcglobal.net [99.115.135.74]) by mx1.freebsd.org (Postfix) with ESMTP id 270068FC17 for ; Sat, 30 Jun 2012 17:45:48 +0000 (UTC) Received: (from root@localhost) by monday.kientzle.com (8.14.4/8.14.4) id q5UHjevA063373; Sat, 30 Jun 2012 17:45:41 GMT (envelope-from tim@kientzle.com) Received: from [192.168.2.143] (CiscoE3000 [192.168.1.65]) by kientzle.com with SMTP id y72rqxk9eu38hbfhsyv95vdd6w; Sat, 30 Jun 2012 17:45:40 +0000 (UTC) (envelope-from tim@kientzle.com) Mime-Version: 1.0 (Apple Message framework v1278) Content-Type: text/plain; charset=iso-8859-1 From: Tim Kientzle In-Reply-To: Date: Sat, 30 Jun 2012 10:45:40 -0700 Content-Transfer-Encoding: quoted-printable Message-Id: References: To: David Kalliecharan X-Mailer: Apple Mail (2.1278) Cc: freebsd-arm@freebsd.org Subject: Re: Problem building world and ubldr for beaglebone X-BeenThere: freebsd-arm@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting FreeBSD to the StrongARM Processor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 30 Jun 2012 17:45:48 -0000 On Jun 30, 2012, at 9:23 AM, David Kalliecharan wrote: > Hi Everyone, >=20 > I have been trying to build the BeagleBone with the git repository > freebsd-beaglebone.git but I have come into some issues with > buildkernel, buildworld and ubldr seem to fail and I am not sure how > to solve this. >=20 > Versions: > FreeBSD-CURRENT - stock build 2012/June/28 > freebsd-beaglebone.git - commit = 72178b8c837f5ef4b733016ae3d152c1fec6e912 > u-boot - commit 2e3792957c948024ec99815539c71c612871eed4 > armv6 - r237535 >=20 > Output: > $ tail _.buildkernel.log Since buildkernel relies on tools compiled during buildworld, let's focus on buildworld first. > $ tail _.buildworld.log > c1: warnings being treated as errors > /usr/home/davidk/freebsd-beaglebone/src-armv6/lib/libc/net/nsparser.y: > In function '_nsaddsrctomap': > = /usr/home/davidk/freebsd-beaglebone/src-armv6/lib/libc/net/nsparser.y:169:= > warning: implicit declaration of function 'free' > In file included from nsparser.c:398: > = /usr/home/davidk/freebsd-beaglebone/src-armv6/lib/libc/../../include/stdli= b.h: > At top level: > = /usr/home/davidk/freebsd-beaglebone/src-armv6/lib/libc/../../include/stdli= b.h:93: > warning: conflicting types for 'free' > = /usr/home/davidk/freebsd-beaglebone/src-armv6/lib/libc/net/nsparser.y:169:= > warning: previous implicit declaration of 'free' was here > *** [nsparser.o] Error code 1 >=20 > Stop in /usr/home/davidk/freebsd-beaglebone/src-armv6/lib/libc. > *** [lib/libc__L] Error code 1 >=20 > Stop in /usr/home/davidk/freebsd-beaglebone/src-armv6. > *** [libraries] Error code 1 >=20 > Stop in /usr/home/davidk/freebsd-beaglebone/src-armv6. > *** [_libraries] Error code 1 >=20 > Stop in /usr/home/davidk/freebsd-beaglebone/src-armv6. > *** [buildworld] Error code 1 >=20 > Stop in /usr/home/davidk/freebsd-beaglebone/src-armv6. This looks like more fallout from the recent yacc change in FreeBSD-CURRENT. Take a look at r235767 in -CURRENT; looks like that might need to be merged to armv6. >=20 > $tail _.ubldr.build.log You didn't provide quite enough context here; it looks like the error was shortly before the log piece you quoted. Tim