From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1760654AbcCEISs (ORCPT ); Sat, 5 Mar 2016 03:18:48 -0500 Received: from torg.zytor.com ([198.137.202.12]:58808 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1752494AbcCEISj (ORCPT ); Sat, 5 Mar 2016 03:18:39 -0500 Date: Sat, 5 Mar 2016 00:18:16 -0800 From: tip-bot for Masahiro Yamada Message-ID: Cc: hpa@zytor.com, mingo@kernel.org, yamada.masahiro@socionext.com, jolsa@kernel.org, adrian.hunter@intel.com, acme@redhat.com, linux-kernel@vger.kernel.org, lukas@wunner.de, aaro.koskinen@nokia.com, tglx@linutronix.de Reply-To: mingo@kernel.org, hpa@zytor.com, yamada.masahiro@socionext.com, jolsa@kernel.org, linux-kernel@vger.kernel.org, acme@redhat.com, adrian.hunter@intel.com, lukas@wunner.de, aaro.koskinen@nokia.com, tglx@linutronix.de In-Reply-To: <1454263140-19670-1-git-send-email-yamada.masahiro@socionext.com> References: <1454263140-19670-1-git-send-email-yamada.masahiro@socionext.com> To: linux-tip-commits@vger.kernel.org Subject: [tip:perf/core] tools build: Use .s extension for preprocessed assembler code Git-Commit-ID: 676787939ef8ccfcf8039104f766ebe5ebe23924 X-Mailer: tip-git-log-daemon Robot-ID: Robot-Unsubscribe: Contact to get blacklisted from these emails MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset=UTF-8 Content-Disposition: inline Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Commit-ID: 676787939ef8ccfcf8039104f766ebe5ebe23924 Gitweb: http://git.kernel.org/tip/676787939ef8ccfcf8039104f766ebe5ebe23924 Author: Masahiro Yamada AuthorDate: Mon, 1 Feb 2016 02:59:00 +0900 Committer: Arnaldo Carvalho de Melo CommitDate: Thu, 3 Mar 2016 11:10:37 -0300 tools build: Use .s extension for preprocessed assembler code The "man gcc" says .i extension represents the file is C source code that should not be preprocessed. Here, .s should be used. For clarification, .c ---(preprocess)---> .i .S ---(preprocess)---> .s Signed-off-by: Masahiro Yamada Acked-by: Jiri Olsa Cc: Aaro Koskinen Cc: Adrian Hunter Cc: Lukas Wunner Link: http://lkml.kernel.org/r/1454263140-19670-1-git-send-email-yamada.masahiro@socionext.com Signed-off-by: Arnaldo Carvalho de Melo --- tools/build/Makefile.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/build/Makefile.build b/tools/build/Makefile.build index 4a96473..ee566e8 100644 --- a/tools/build/Makefile.build +++ b/tools/build/Makefile.build @@ -85,7 +85,7 @@ $(OUTPUT)%.i: %.c FORCE $(call rule_mkdir) $(call if_changed_dep,cc_i_c) -$(OUTPUT)%.i: %.S FORCE +$(OUTPUT)%.s: %.S FORCE $(call rule_mkdir) $(call if_changed_dep,cc_i_c)