From owner-freebsd-stable@freebsd.org Sun Sep 18 18:37:29 2016 Return-Path: Delivered-To: freebsd-stable@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5051ABDFB20 for ; Sun, 18 Sep 2016 18:37:29 +0000 (UTC) (envelope-from dioxinu@gmail.com) Received: from mail-wm0-x22b.google.com (mail-wm0-x22b.google.com [IPv6:2a00:1450:400c:c09::22b]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id E8F04BE for ; Sun, 18 Sep 2016 18:37:28 +0000 (UTC) (envelope-from dioxinu@gmail.com) Received: by mail-wm0-x22b.google.com with SMTP id d66so6396405wmf.0 for ; Sun, 18 Sep 2016 11:37:28 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:from:date:message-id:subject:to; bh=5aUXdDFlJNoZmCkMhJu+3FZ44mqyo+eFl7a1SUR8oGM=; b=qc1BoFUuaebAtX8b6xBB2fL96cNbbpRGFuVvx+Fp7VyPU9R8LwY4jk6bMkYLEAkRle G9bMkgO/3O5kDNgE6i8QUItuOBjlSy+N9hm0F+myM+E3vwz3Yu1xbEhF4VSDUUPW6en9 YLGRjTZEPr4Dz//Yqhr5KxEUuQdJlxJK3+Ah+rEEPuXYAyhUJBTc+8Z10bfLgu1QCKoJ L0QOU06XhfgsQHh9ZgCADz+CNvGja27FX8XYnVZRQqkKJpwNYjyXOrxCHxuXqWNVWRwE YYyAKAszmf4RehzKd87PrqG3naLMn2YZLxEcBSsmAoi41hIU6fLqDd9eKYHI5K61RmrG MSYg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:from:date:message-id:subject:to; bh=5aUXdDFlJNoZmCkMhJu+3FZ44mqyo+eFl7a1SUR8oGM=; b=bPb9LhZ+ptoqPCiu2MUlgubWIrUpC1cymcDMjSJR2zrLE9xoMCL1gqvrQSmV1YJ3AI lvULuzvuexffldAuJ3rkLkU8FfYnR/YDcVDyouMCZNKI8ohwKy7Q52hcIeLIk+/RfoAt OiIFJ3t9eWJJQL3UC7JCLAOmoxvFw9Ah9N8P19o0ChDAi0bVkglXpoBho8XbiE1nMA+i nk1xW5BbETw3bTH1dXtle5zHcudGdDOlVCuZdtD3/BzI8kqTyUnDf0OFaFrd4y8OWCGN kqfYG4tZlmIH0gry+H2EZNLCbml/V8HYR/2b/ncGt9qqingg6TD47+tRH08Ra4scjpih OQDw== X-Gm-Message-State: AE9vXwMqioaeOdPf4Tb3lgZ1ND/KNHjmlIcwLAKTHMLGpUzAqAefn97earios7m4PABjhiXPuOVmzbysUDhOrw== X-Received: by 10.28.234.157 with SMTP id g29mr4098460wmi.86.1474223846379; Sun, 18 Sep 2016 11:37:26 -0700 (PDT) MIME-Version: 1.0 Received: by 10.80.171.165 with HTTP; Sun, 18 Sep 2016 11:37:25 -0700 (PDT) From: "Alex T." Date: Sun, 18 Sep 2016 11:37:25 -0700 Message-ID: Subject: buildkernel fails with a 'invalid conversion specifier' compiler error To: freebsd-stable@freebsd.org Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.23 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Sep 2016 18:37:29 -0000 Hi guys, I'm on stable/10 branch and have been using it to rebuild world and kernel. This is the revision I'm currently trying to build but started seeing the following issue way before it. URL: svn://svn.freebsd.org/base/stable/10 Revision: 305760 The world builds fine, but building the kernel fails with this error: /usr/src/sys/cam/cam_xpt.c:1060:27: error: invalid conversion specifier 'b' [-Werror,-Wformat-invalid-specifier] ...printf("%s%d: quirks=0x%b\n", perip... ~^ /usr/src/sys/cam/cam_xpt.c:1061:36: error: data argument not used by format string [-Werror,-Wformat-extra-args] ...periph->unit_number, quirks, bit_st... This is how my /etc/make.conf looks like: WITH_PKGNG=yes SSP_CFLAGS=-fstack-protector-all WITH_SSP_PORTS=yes WITHOUT="DOCS" and I don't have /etc/src.conf. Has anyone seen this issue? Any idea what might me misconfigured missing here? Thank you.