From owner-freebsd-current@FreeBSD.ORG Tue Jul 2 14:51:38 2013 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id B62C18A6 for ; Tue, 2 Jul 2013 14:51:38 +0000 (UTC) (envelope-from asomers@gmail.com) Received: from mail-qa0-x22a.google.com (mail-qa0-x22a.google.com [IPv6:2607:f8b0:400d:c00::22a]) by mx1.freebsd.org (Postfix) with ESMTP id 6154911AD for ; Tue, 2 Jul 2013 14:51:38 +0000 (UTC) Received: by mail-qa0-f42.google.com with SMTP id hu16so2914683qab.1 for ; Tue, 02 Jul 2013 07:51:37 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:cc:content-type; bh=22tc3Nk4npEZrrISToY0xPr2EiBnnfiv2hTF3jX977w=; b=zBPjYxICqkiLpIZaMWN2GsVk5YlYVgYyB2gPgyYYXhcAPX4ttJaH6kIhtTN1/PsEj3 JGxTTik3qHZyc/VQxwmfQVMEWdNsGb1ClVcN9J5xMZpq2sNUvlK9hq9pdz+7YYWEL0rI NjO7olGASP3WeNSwtSbTmGJtwIjVmAEkEbYDwphXEMWxtz/6r+v/b2ZCG4TmdHUhQiEk +c8ljPolrKT4uOPANUEtaFgM8fwrhE0HuqzkUNRZOeGOl3kuf0vun0mc+flIurjplLNa 7IO/8c+1hJ/ZdAiQybeoPP/cLLkPL7XmdxpKGlSfZRPpg6hc1V5yvcHRQ38xmOilXMTU twIg== MIME-Version: 1.0 X-Received: by 10.224.16.7 with SMTP id m7mr29613909qaa.34.1372776697942; Tue, 02 Jul 2013 07:51:37 -0700 (PDT) Sender: asomers@gmail.com Received: by 10.49.37.226 with HTTP; Tue, 2 Jul 2013 07:51:37 -0700 (PDT) In-Reply-To: <20130702151106.75d0988a@telesto> References: <20130702115653.770d555c@telesto> <20130702151106.75d0988a@telesto> Date: Tue, 2 Jul 2013 08:51:37 -0600 X-Google-Sender-Auth: -X_XPagYFdmeoyRVJ_oCocwcnK0 Message-ID: Subject: Re: CURRENT fails to build: usr/src/sbin/devd/devd.cc:1125:2: error: use of undeclared identifier 'va_end' va_end(argp); From: Alan Somers To: "O. Hartmann" Content-Type: text/plain; charset=ISO-8859-1 Cc: FreeBSD CURRENT X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 02 Jul 2013 14:51:38 -0000 Should be fixed in 252508. I guess I need to start testing with libc++ from now on. On Tue, Jul 2, 2013 at 7:11 AM, O. Hartmann wrote: > On Tue, 2 Jul 2013 07:05:00 -0600 > asomers@gmail.com wrote: > >> And yet it's not producing any tinderbox errors. Perhaps stdarg.h is >> getting implicitly included by some other header in CURRENT, but not >> in whatever version of the code you have? For now, you can #include >> and I'll fix it when I get to the office this morning. > > The code version I have is > [...] >>>> Updating /usr/src using Subversion > -------------------------------------------------------------- > Updating '.': > At revision 252505. > [...] > > Thanks for looking into it. > > Regards, > Oliver > >> >> On Tue, Jul 2, 2013 at 3:56 AM, O. Hartmann >> wrote: >> > The recent sources fails to build with the following error: >> > >> > >> > [...] >> > ===> sbin/devd (all) >> > c++ -O2 -pipe -O3 -march=native -I. -I/usr/src/sbin/devd -pipe -O3 >> > -Qunused-arguments -fstack-protector -Wsystem-headers -Werror -Wall >> > -Wno-format-y2k -W -Wno-unused-parameter -Wpointer-arith >> > -Wno-uninitialized -Wno-empty-body -Wno-string-plus-int >> > -Wno-tautological-compare -Wno-unused-value >> > -Wno-parentheses-equality -Wno-unused-function -Wno-conversion >> > -stdlib=libc++ -std=c++11 >> > -c /usr/src/sbin/devd/devd.cc /usr/src/sbin/devd/devd.cc:1120:2: >> > error: use of undeclared identifier 'va_start' va_start(argp, fmt); >> > ^ /usr/src/sbin/devd/devd.cc:1125:2: error: use of undeclared >> > identifier 'va_end' va_end(argp); ^ 2 errors generated. *** Error >> > code 1 >> > >> > Stop. >> > make: stopped in /usr/src/sbin/devd >> > *** Error code 1 >> > >> > >> > Oliver > >