From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 2831 invoked by alias); 15 Mar 2010 20:17:54 -0000 Received: (qmail 2822 invoked by uid 22791); 15 Mar 2010 20:17:54 -0000 X-SWARE-Spam-Status: No, hits=-6.8 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_HI,SPF_HELO_PASS X-Spam-Check-By: sourceware.org Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Mon, 15 Mar 2010 20:17:47 +0000 Received: from int-mx04.intmail.prod.int.phx2.redhat.com (int-mx04.intmail.prod.int.phx2.redhat.com [10.5.11.17]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id o2FKHTRc021168 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Mon, 15 Mar 2010 16:17:29 -0400 Received: from greed.delorie.com (ovpn01.gateway.prod.ext.phx2.redhat.com [10.5.9.1]) by int-mx04.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id o2FKHRlU004684 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Mon, 15 Mar 2010 16:17:28 -0400 Received: from greed.delorie.com (greed.delorie.com [127.0.0.1] (may be forged)) by greed.delorie.com (8.14.3/8.14.3) with ESMTP id o2FKHRGs022471; Mon, 15 Mar 2010 16:17:27 -0400 Received: (from dj@localhost) by greed.delorie.com (8.14.3/8.14.3/Submit) id o2FKHRm5022468; Mon, 15 Mar 2010 16:17:27 -0400 Date: Mon, 15 Mar 2010 20:17:00 -0000 Message-Id: <201003152017.o2FKHRm5022468@greed.delorie.com> From: DJ Delorie To: Matt Rice CC: vapier@gentoo.org, gdb-patches@sourceware.org, jie@codesourcery.com In-reply-to: <8ba6bed41003141743n79e501b7n11d3d20cdb45f356@mail.gmail.com> (message from Matt Rice on Sun, 14 Mar 2010 16:43:45 -0800) Subject: Re: [PATCH] sim: tests: support .S files References: <1268604229-26466-1-git-send-email-vapier@gentoo.org> <8ba6bed41003141743n79e501b7n11d3d20cdb45f356@mail.gmail.com> X-IsSubscribed: yes Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org X-SW-Source: 2010-03/txt/msg00560.txt.bz2 > > Rather than requiring all sim tests to be preprocessed .s files, add > > support for .S files so we can easily write code using normal CPP > > defines/macros. > > not that I actually care about any such targets, but wouldn't this > just fall over on a case insentive filesystem? It works if you use explicit rules to find the .S files, or have pattern rules for .S but not .s with an explicit list of targets. It's when you rely on wildcards to scan for *.[sS] files that things go badly.