From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.org/gmane.linux.lib.musl.general/8569 Path: news.gmane.org!not-for-mail From: Rich Felker Newsgroups: gmane.linux.lib.musl.general Subject: Re: Support for .S files Date: Fri, 25 Sep 2015 14:56:56 -0400 Message-ID: <20150925185656.GN17773@brightrain.aerifal.cx> References: <005a01d0f7c3$534a8360$f9df8a20$@codeaurora.org> Reply-To: musl@lists.openwall.com NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1443207435 31606 80.91.229.3 (25 Sep 2015 18:57:15 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Fri, 25 Sep 2015 18:57:15 +0000 (UTC) To: musl@lists.openwall.com Original-X-From: musl-return-8581-gllmg-musl=m.gmane.org@lists.openwall.com Fri Sep 25 20:57:15 2015 Return-path: Envelope-to: gllmg-musl@m.gmane.org Original-Received: from mother.openwall.net ([195.42.179.200]) by plane.gmane.org with smtp (Exim 4.69) (envelope-from ) id 1ZfYBE-0005NI-3L for gllmg-musl@m.gmane.org; Fri, 25 Sep 2015 20:57:12 +0200 Original-Received: (qmail 15368 invoked by uid 550); 25 Sep 2015 18:57:10 -0000 Mailing-List: contact musl-help@lists.openwall.com; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: Original-Received: (qmail 14323 invoked from network); 25 Sep 2015 18:57:09 -0000 Content-Disposition: inline In-Reply-To: <005a01d0f7c3$534a8360$f9df8a20$@codeaurora.org> User-Agent: Mutt/1.5.21 (2010-09-15) Original-Sender: Rich Felker Xref: news.gmane.org gmane.linux.lib.musl.general:8569 Archived-At: On Fri, Sep 25, 2015 at 01:52:26PM -0500, Sidney Manning wrote: > Clang and gcc do not invoke the preprocessor on files with a lowercase .s > suffix. > > The following addition would permit uppercase .S files. The intention was to avoid using the preprocessor in asm and having it become #ifdef hell. This could be revisited (especially now as part of the arch deduplication/refactoring) but there should first be some discussion of the motivation (what you want to achieve with it). Rich