From owner-freebsd-current@FreeBSD.ORG Fri Jan 2 00:34:12 2015 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4BD4D8B2 for ; Fri, 2 Jan 2015 00:34:12 +0000 (UTC) Received: from mail-yh0-f54.google.com (mail-yh0-f54.google.com [209.85.213.54]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 0DF29649C4 for ; Fri, 2 Jan 2015 00:34:11 +0000 (UTC) Received: by mail-yh0-f54.google.com with SMTP id 29so9354098yhl.13 for ; Thu, 01 Jan 2015 16:34:05 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:in-reply-to:references:date :message-id:subject:from:to:cc:content-type; bh=bUnFbeNi6v0aWiiLfbh2Sj0y/Pqt7TmHeDL0Gur28qw=; b=kjr8i5E8s+C/dbQ/2oFPRuwYYV6QYcAjsfzaJQRPtTRBPvcCi9gxCazQY64JJfHmE1 gJ5mODImaI6AVGcD81IOCZDAbRbZj2LWdHo9X3xGFwURdDVDnhQF/PB9nhNITFBYcxf/ hMXqVkAbPdk04bKEwSrFWN09nRhY4pV/Rl8oxAm6fQSlnFv4nriNluKrc+BIBdxtw7xb 6rNDkafbGTb8HUndEbCgQt3gF8OPooHJh2FXaAcV7Wz9ganPkLKhK10HDJpJcD5Ep4C+ D9tZtIp10D17s5Ugvx0CGHV8/7dkKzBUI0etUy6X63UsUbdbaghalPekuNACfdl5CEbl yxRA== X-Gm-Message-State: ALoCoQlB7J5eJTNCwKJI3f09VklrSOGXmXPUS3xEBloM+p0XLPEzNTW87TnBW2XOFHQj+exGJM+X MIME-Version: 1.0 X-Received: by 10.170.61.202 with SMTP id d193mr54791412ykd.32.1420158845755; Thu, 01 Jan 2015 16:34:05 -0800 (PST) Received: by 10.170.46.213 with HTTP; Thu, 1 Jan 2015 16:34:05 -0800 (PST) In-Reply-To: References: <528C023D-6207-4054-917B-05D4C4E605EC@FreeBSD.org> <20150101125043.6e6e3a52.ohartman@zedat.fu-berlin.de> Date: Fri, 2 Jan 2015 01:34:05 +0100 Message-ID: Subject: Re: HEADS UP: Upgraded clang, llvm and lldb to 3.5.0 From: Oliver Pinter To: Dimitry Andric Content-Type: text/plain; charset=UTF-8 Cc: HardenedBSD Developers , FreeBSD-Current X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.18-1 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: Fri, 02 Jan 2015 00:34:12 -0000 I checked in amd64 case on my desktop machine, and building fine. After that, I looked again into build log, and I found this: make[2]: stopped in /usr/obj/i386.i386/jenkins/workspace/HardenedBSD_Master/sys/HARDENEDBSD 1 error make[2]: stopped in /usr/obj/i386.i386/jenkins/workspace/HardenedBSD_Master/sys/HARDENEDBSD *** [buildkernel] Error code 2 Seems like, the error affected the i386 case. On Thu, Jan 1, 2015 at 6:53 PM, Dimitry Andric wrote: > On 01 Jan 2015, at 18:35, Oliver Pinter wrote: >> We at HardenedBSD got this error, with out jenkins instance: >> >> --- dis_tables.o --- >> /jenkins/workspace/HardenedBSD_Master/sys/cddl/dev/dtrace/x86/dis_tables.c:3025:25: >> error: '&&' within '||' [-Werror,-Wlogical-op-parentheses] >> if (cpu_mode == SIZE64 && dp->it_invalid64 || >> ~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~ ~~ >> /jenkins/workspace/HardenedBSD_Master/sys/cddl/dev/dtrace/x86/dis_tables.c:3025:25: >> note: place parentheses around the '&&' expression to silence this >> warning >> if (cpu_mode == SIZE64 && dp->it_invalid64 || >> ^ >> ( ) >> /jenkins/workspace/HardenedBSD_Master/sys/cddl/dev/dtrace/x86/dis_tables.c:3026:25: >> error: '&&' within '||' [-Werror,-Wlogical-op-parentheses] >> cpu_mode != SIZE64 && dp->it_invalid32) >> ~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~ >> /jenkins/workspace/HardenedBSD_Master/sys/cddl/dev/dtrace/x86/dis_tables.c:3026:25: >> note: place parentheses around the '&&' expression to silence this >> warning >> cpu_mode != SIZE64 && dp->it_invalid32) >> ^ >> ( ) >> --- all_subdir_ed --- > > I can't reproduce this warning here, at least not with pristine head. > > Did you change any of the -Wno-xxx flags in your customized source tree? > > -Dimitry >