From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752181AbdEDGYA (ORCPT ); Thu, 4 May 2017 02:24:00 -0400 Received: from mail-pg0-f68.google.com ([74.125.83.68]:34080 "EHLO mail-pg0-f68.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751148AbdEDGXw (ORCPT ); Thu, 4 May 2017 02:23:52 -0400 From: Nick Desaulniers Cc: nick.desaulniers@gmail.com, jpoimboe@redhat.com, tglx@linutronix.de, mingo@redhat.com, hpa@zytor.com, x86@kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH] x86/build: don't add -maccumulate-outgoing-args w/o compiler support Date: Wed, 3 May 2017 23:23:41 -0700 Message-Id: <20170504062341.20209-1-nick.desaulniers@gmail.com> X-Mailer: git-send-email 2.9.3 To: unlisted-recipients:; (no To-header on input) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Otherwise other compilers, like Clang, are prevented from compiling the kernel. This flag was introduced in 3f135e57a4f76d24ae8d8a490314331f0ced40c5. Signed-off-by: Nick Desaulniers --- arch/x86/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/x86/Makefile b/arch/x86/Makefile index 4430dd4..5a0ac84 100644 --- a/arch/x86/Makefile +++ b/arch/x86/Makefile @@ -179,7 +179,7 @@ ifdef CONFIG_JUMP_LABEL endif ifeq ($(ACCUMULATE_OUTGOING_ARGS), 1) - KBUILD_CFLAGS += -maccumulate-outgoing-args + KBUILD_CFLAGS += $(call cc-option,-maccumulate-outgoing-args,) endif # Stackpointer is addressed different for 32 bit and 64 bit x86 -- 2.9.3