From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756015AbdDETBj (ORCPT ); Wed, 5 Apr 2017 15:01:39 -0400 Received: from mail-pg0-f47.google.com ([74.125.83.47]:32874 "EHLO mail-pg0-f47.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752675AbdDETBd (ORCPT ); Wed, 5 Apr 2017 15:01:33 -0400 Date: Wed, 5 Apr 2017 12:01:30 -0700 From: Matthias Kaehlcke To: Masahiro Yamada Cc: Michael Davidson , Michal Marek , Thomas Gleixner , Ingo Molnar , "H. Peter Anvin" , Herbert Xu , "David S. Miller" , Shaohua Li , Alexander Potapenko , Dmitry Vyukov , X86 ML , Linux Kbuild mailing list , Linux Kernel Mailing List , linux-crypto@vger.kernel.org, linux-raid@vger.kernel.org Subject: Re: [PATCH 2/7] Makefile, x86, LLVM: disable unsupported optimization flags Message-ID: <20170405190130.GD145051@google.com> References: <20170317001520.85223-1-md@google.com> <20170317001520.85223-3-md@google.com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi Masahiro, El Thu, Apr 06, 2017 at 03:08:26AM +0900 Masahiro Yamada ha dit: > 2017-03-17 9:15 GMT+09:00 Michael Davidson : > > Unfortunately, while clang generates a warning about these flags > > being unsupported it still exits with a status of 0 so we have > > to explicitly disable them instead of just using a cc-option check. > > > > Signed-off-by: Michael Davidson > > > Instead, does the following work for you? > https://patchwork.kernel.org/patch/9657285/ Thanks for the pointer, I was about to give this change (or rather its ancestor) a rework myself :) > You need to use > $(call cc-option, ...) > for -falign-jumps=1 and -falign-loops=1 I can confirm that this works. Thanks Matthias