From owner-freebsd-current@FreeBSD.ORG Tue Sep 18 20:28:08 2012 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2C28E106570B for ; Tue, 18 Sep 2012 20:28:08 +0000 (UTC) (envelope-from mexas@bristol.ac.uk) Received: from dirg.bris.ac.uk (dirg.bris.ac.uk [137.222.10.102]) by mx1.freebsd.org (Postfix) with ESMTP id C0DB58FC16 for ; Tue, 18 Sep 2012 20:28:06 +0000 (UTC) Received: from ncsc.bris.ac.uk ([137.222.10.41]) by dirg.bris.ac.uk with esmtp (Exim 4.72) (envelope-from ) id 1TE4Ol-0000LL-P9 for freebsd-current@freebsd.org; Tue, 18 Sep 2012 21:27:59 +0100 Received: from mech-cluster241.men.bris.ac.uk ([137.222.187.241]) by ncsc.bris.ac.uk with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.72) (envelope-from ) id 1TE4Ol-0006ZG-10 for freebsd-current@freebsd.org; Tue, 18 Sep 2012 21:27:59 +0100 Received: from mech-cluster241.men.bris.ac.uk (localhost [127.0.0.1]) by mech-cluster241.men.bris.ac.uk (8.14.5/8.14.5) with ESMTP id q8IKRw6a086060 for ; Tue, 18 Sep 2012 21:27:58 +0100 (BST) (envelope-from mexas@mech-cluster241.men.bris.ac.uk) Received: (from mexas@localhost) by mech-cluster241.men.bris.ac.uk (8.14.5/8.14.5/Submit) id q8IKRwFw086059 for freebsd-current@freebsd.org; Tue, 18 Sep 2012 21:27:58 +0100 (BST) (envelope-from mexas) Date: Tue, 18 Sep 2012 21:27:58 +0100 (BST) From: Anton Shterenlikht Message-Id: <201209182027.q8IKRwFw086059@mech-cluster241.men.bris.ac.uk> To: freebsd-current@freebsd.org Subject: /usr/src/lib/libc/gen/aux.c:106: error: 'AT_TIMEKEEP' undeclared X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: mexas@bristol.ac.uk List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Sep 2012 20:28:08 -0000 I'm trying to rebuild libc with debugging symbols. I did: # cd /usr/src/lib/libc # make all install DEBUG_FLAGS='-g' and got: cc -O2 -pipe -I/usr/src/lib/libc/include -I/usr/src/lib/libc/../../include -I/ usr/src/lib/libc/ia64 -DNLS -D__DBINTERFACE_PRIVATE -I/usr/src/lib/libc/../../c ontrib/gdtoa -DINET6 -I/usr/src/lib/libc -I/usr/src/lib/libc/resolv -D_ACL_PRIVA TE -DPOSIX_MISTAKE -I/usr/src/lib/libc/../../contrib/jemalloc/include -I/usr/src /lib/libc/../../contrib/tzcode/stdtime -I/usr/src/lib/libc/stdtime -I/usr/src/li b/libc/locale -DBROKEN_DES -DPORTMAP -DDES_BUILTIN -I/usr/src/lib/libc/rpc -DYP -DNS_CACHING -DSYMBOL_VERSIONING -std=gnu99 -Wsystem-headers -Werror -Wall -Wno- format-y2k -Wno-uninitialized -Wno-pointer-sign -c /usr/src/lib/libc/gen/aux.c - o aux.o /usr/src/lib/libc/gen/aux.c: In function 'init_aux': /usr/src/lib/libc/gen/aux.c:106: error: 'AT_TIMEKEEP' undeclared (first use in t his function) /usr/src/lib/libc/gen/aux.c:106: error: (Each undeclared identifier is reported only once /usr/src/lib/libc/gen/aux.c:106: error: for each function it appears in.) /usr/src/lib/libc/gen/aux.c: In function '_elf_aux_info': /usr/src/lib/libc/gen/aux.c:171: error: 'AT_TIMEKEEP' undeclared (first use in t his function) *** [aux.o] Error code 1 I then did # make clean # make and got the same error. This is on 238585 ia64. Perhaps I can't just build libc on its own? Please advise Thanks Anton