From owner-freebsd-stable@FreeBSD.ORG Mon Jun 10 12:05:08 2013 Return-Path: Delivered-To: stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id C9D50E39 for ; Mon, 10 Jun 2013 12:05:08 +0000 (UTC) (envelope-from wjw@digiware.nl) Received: from mail.digiware.nl (unknown [IPv6:2001:4cb8:90:ffff::3]) by mx1.freebsd.org (Postfix) with ESMTP id 8C743120D for ; Mon, 10 Jun 2013 12:05:08 +0000 (UTC) Received: from rack1.digiware.nl (unknown [127.0.0.1]) by mail.digiware.nl (Postfix) with ESMTP id ED229153434 for ; Mon, 10 Jun 2013 14:05:05 +0200 (CEST) X-Virus-Scanned: amavisd-new at digiware.nl Received: from mail.digiware.nl ([127.0.0.1]) by rack1.digiware.nl (rack1.digiware.nl [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id WbkE_O3qRkmk for ; Mon, 10 Jun 2013 14:05:04 +0200 (CEST) Received: from [IPv6:2001:4cb8:3:1:45d9:68e8:668d:b40b] (unknown [IPv6:2001:4cb8:3:1:45d9:68e8:668d:b40b]) by mail.digiware.nl (Postfix) with ESMTP id 8F087153433 for ; Mon, 10 Jun 2013 14:05:04 +0200 (CEST) Message-ID: <51B5C0EB.6050803@digiware.nl> Date: Mon, 10 Jun 2013 14:04:59 +0200 From: Willem Jan Withagen Organization: Digiware Management b.v. User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko/20130509 Thunderbird/17.0.6 MIME-Version: 1.0 To: "stable@freebsd.org" Subject: Error in make buildkernel ` X-Enigmail-Version: 1.5.1 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Jun 2013 12:05:08 -0000 Hi, I'm trying to build a stable kernle on a freshly build 8.4-Stable i386 system. And I get: MAKE=make sh /usr/srcs/src9/src/sys/conf/newvers.sh GENERIC /usr/local/bin/svnversion cc -c -O -pipe -std=c99 -g -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/usr/srcs/src9/src/sys -I/usr/srcs/src9/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -Werror vers.c ctfconvert -L VERSION -g vers.o linking kernel.debug ld:/usr/srcs/src9/src/sys/conf/ldscript.i386:66: syntax error *** Error code 1 Stop in /usr/obj/usr/srcs/src9/src/sys/GENERIC. *** Error code 1 Stop in /usr/srcs/src9/src. *** Error code 1 Line 66 is: .eh_frame : ONLY_IF_RO { KEEP (*(.eh_frame)) } The piece of "code" around line 66 looks like: PROVIDE (__etext = .); PROVIDE (_etext = .); PROVIDE (etext = .); .rodata : { *(.rodata .rodata.* .gnu.linkonce.r.*) } .rodata1 : { *(.rodata1) } .eh_frame_hdr : { *(.eh_frame_hdr) } .eh_frame : ONLY_IF_RO { KEEP (*(.eh_frame)) } .gcc_except_table : ONLY_IF_RO { *(.gcc_except_table .gcc_except_table.*) } /* Adjust the address for the data segment. We want to adjust up to the same address within the page on the next page up. */ . = ALIGN (CONSTANT (MAXPAGESIZE)) - ((CONSTANT (MAXPAGESIZE) - .) & (CONSTANT (MAXPAGESIZE) - 1)); . = DATA_SEGMENT_ALIGN (CONSTANT (MAXPAGESIZE), CONSTANT (COMMONPAGESI ZE)); /* Exception handling */ Any suggestions on how to fix this?? Thanx, --WjW