From owner-freebsd-current@FreeBSD.ORG Tue Sep 18 19:17:18 2012 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BB73E106564A for ; Tue, 18 Sep 2012 19:17:18 +0000 (UTC) (envelope-from w8hdkim@gmail.com) Received: from mail-vc0-f182.google.com (mail-vc0-f182.google.com [209.85.220.182]) by mx1.freebsd.org (Postfix) with ESMTP id 6C5368FC16 for ; Tue, 18 Sep 2012 19:17:18 +0000 (UTC) Received: by vcbfw7 with SMTP id fw7so351041vcb.13 for ; Tue, 18 Sep 2012 12:17:17 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=rSp9cahY0uQw9VwFRq1YoROyWhEmkqVHZEC/NkPcxx4=; b=Tt83KIUW5D4+4lIFvwe0+GFOnEIV8D92ZksuaaTPiwZt6BER+GOE0c7mSide3uTvdW UUfrRJwY2xSfsMcklaaXfqU6d3tIA+BY4WL+6Gr2kulLoyF1p3N187daXbdc6TVKj6Yn tPWUwuqx3TbX4Pw812ub/thNTcWmY8xs5a3Zrfe480Wp4YJG5FuCbJk9wWoo1cf7Y1+t 9gnQcsdzj8CRzwx/UtXMzD+qLlgr98vYmtVGsnKmHr9NLLeBa8gLzSou8OZ8dTZ9Vl7d pLFdUiU9lV4u1wJjfqDc5xFdmdOiV0oDnaommw24nSmx/sJfMOJRXcS7UOaf6sG46BB9 Zl5Q== MIME-Version: 1.0 Received: by 10.52.240.225 with SMTP id wd1mr466944vdc.31.1347995837270; Tue, 18 Sep 2012 12:17:17 -0700 (PDT) Received: by 10.58.26.129 with HTTP; Tue, 18 Sep 2012 12:17:17 -0700 (PDT) In-Reply-To: References: Date: Tue, 18 Sep 2012 15:17:17 -0400 Message-ID: From: Kim Culhan To: Garrett Cooper Content-Type: text/plain; charset=ISO-8859-1 Cc: freebsd-current@freebsd.org Subject: Re: build failure r240669 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 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, 18 Sep 2012 19:17:18 -0000 On Tue, Sep 18, 2012 at 3:05 PM, Garrett Cooper wrote: > On Tue, Sep 18, 2012 at 11:52 AM, Kim Culhan wrote: >> Seeing this on a clean checkout of r240669 > > ... > >> 1 error >> *** [everything] Error code 2 >> 1 error >> *** [buildworld] Error code 2 >> 1 error > > This isn't helpful. Either compile with -j1 or capture everything > to a log and look for " Error " in the output; the first occurrence is > your real error. Ah right sorry about that, take 2: clang -pg -O2 -pipe -DTERMIOS -DANSI_SOURCE -I/usr/src/secure/lib/libcrypto/../../../crypto/openssl -I/ usr/src/secure/lib/libcrypto/../../../crypto/openssl/crypto -I/usr/obj/usr/src/secure/lib/libcrypto -DOPE NSSL_THREADS -DDSO_DLFCN -DHAVE_DLFCN_H -DOPENSSL_NO_IDEA -DL_ENDIAN -DOPENSSL_IA32_SSE2 -DAES_ASM -DBSAE S_ASM -DVPAES_ASM -DOPENSSL_BN_ASM_MONT -DOPENSSL_BN_ASM_MONT5 -DOPENSSL_BN_ASM_GF2m -DMD5_ASM -DGHASH_AS M -DSHA1_ASM -DSHA256_ASM -DSHA512_ASM -DWHIRLPOOL_ASM -I/usr/src/secure/lib/libcrypto/../../../crypto/op enssl/crypto/asn1 -I/usr/src/secure/lib/libcrypto/../../../crypto/openssl/crypto/evp -I/usr/src/secure/li b/libcrypto/../../../crypto/openssl/crypto/modes -DNO_IDEA -std=gnu89 -Qunused-arguments -fstack-protecto r -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -Wno-tautological-compare -Wno-unused-value -Wno -parentheses-equality -Wno-unused-function -Wno-conversion -Wno-switch -Wno-switch-enum -Wno-parentheses -c /usr/src/secure/lib/libcrypto/../../../crypto/openssl/crypto/x509v3/pcy_tree.c -o pcy_tree.po /usr/src/sbin/nvmecontrol/nvmecontrol.c:77:6: error: cast from 'struct nvme_controller_data *' to 'uint32 _t *' (aka 'unsigned int *') increases required alignment from 1 to 4 [-Werror,-Wcast-align] p = (uint32_t *)cdata; ^~~~~~~~~~~~~~~~~ 1 error generated. *** [nvmecontrol.o] Error code 1 1 error *** [all] Error code 2 1 error *** [sbin.all__D] Error code 2 -- -kim