From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 6377 invoked by alias); 23 Feb 2010 16:35:28 -0000 Received: (qmail 6346 invoked by uid 22791); 23 Feb 2010 16:35:26 -0000 X-SWARE-Spam-Status: No, hits=-1.6 required=5.0 tests=AWL,BAYES_00 X-Spam-Check-By: sourceware.org Received: from smtp2.belwue.de (HELO smtp2.belwue.de) (129.143.2.15) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Tue, 23 Feb 2010 16:35:21 +0000 Received: from mx4.science-computing.de (mx4.science-computing.de [193.197.16.30]) by smtp2.belwue.de with ESMTP id o1NGZIEi023636 for ; Tue, 23 Feb 2010 17:35:18 +0100 (MET) env-from (prvs=663ad43a6=H.Koenig@science-computing.de) Received: from localhost (localhost [127.0.0.1]) by scmail.science-computing.de (Postfix) with ESMTP id 6371D414002; Tue, 23 Feb 2010 17:35:12 +0100 (CET) Received: from scmail.science-computing.de ([127.0.0.1]) by localhost (obitest.science-computing.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id s3ayDFQL-i9C; Tue, 23 Feb 2010 17:35:05 +0100 (CET) Received: from atuin.science-computing.de (atuin.science-computing.de [10.10.8.66]) by scmail.science-computing.de (Postfix) with ESMTP id 8799D414001; Tue, 23 Feb 2010 17:35:05 +0100 (CET) Received: by atuin.science-computing.de (Postfix, from userid 1009) id 63C8289D8A; Tue, 23 Feb 2010 17:35:05 +0100 (CET) Date: Tue, 23 Feb 2010 16:35:00 -0000 From: Harald Koenig To: Pedro Alves Cc: bug-gdb@gnu.org, gdb-patches@sourceware.org, Harald Koenig , Harald Koenig Subject: Re: some compile errors fo gdb-7.0.1 Message-ID: <20100223163505.GA21619@atuin.science-computing.de> References: <20100215141621.GA9469@atuin.science-computing.de> <201002181923.34196.pedro@codesourcery.com> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="k1lZvvs/B4yU6o8G" Content-Disposition: inline In-Reply-To: <201002181923.34196.pedro@codesourcery.com> User-Agent: Mutt/1.5.18 (2008-05-17) 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-02/txt/msg00569.txt.bz2 --k1lZvvs/B4yU6o8G Content-Disposition: inline Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Content-length: 1224 one more small patch for AIX in config/mh-ppc-aix in case $CC includes spaces. for some reason in older gdb version we needed CC='gcc -isystem /usr/include' shows that quoting problem. will test if this still is needed (read: what's the real problem and a better fix, iff still needed at alll). Harald Koenig -- "I hope to die ___ _____ before I *have* to use Microsoft Word.", 0--,| /OOOOOOO\ Donald E. Knuth, 02-Oct-2001 in Tuebingen. <_/ / /OOOOOOOOOOO\ \ \/OOOOOOOOOOOOOOO\ \ OOOOOOOOOOOOOOOOO|// Harald Koenig \/\/\/\/\/\/\/\/\/ science+computing ag // / \\ \ koenig@science-computing.de ^^^^^ ^^^^^ -- Vorstand/Board of Management: Dr. Bernd Finkbeiner, Dr. Roland Niemeier, Dr. Arno Steitz, Dr. Ingrid Zech Vorsitzender des Aufsichtsrats/ Chairman of the Supervisory Board: Michel Lepert Sitz/Registered Office: Tuebingen Registergericht/Registration Court: Stuttgart Registernummer/Commercial Register No.: HRB 382196 --k1lZvvs/B4yU6o8G Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="mh-ppc-aix.diff" Content-length: 486 Index: mh-ppc-aix =================================================================== RCS file: /cvs/src/src/config/mh-ppc-aix,v retrieving revision 1.3 diff -u -r1.3 mh-ppc-aix --- mh-ppc-aix 16 Aug 2009 12:49:48 -0000 1.3 +++ mh-ppc-aix 23 Feb 2010 16:31:34 -0000 @@ -5,4 +5,4 @@ # don't do it any more. BOOT_ADAFLAGS = -gnatapg BOOT_LDFLAGS = -Wl,-bbigtoc -LDFLAGS = `case $(CC) in *gcc*) echo -Wl,-bbigtoc ;; esac;` +LDFLAGS = `case "$(CC)" in *gcc*) echo -Wl,-bbigtoc ;; esac;` --k1lZvvs/B4yU6o8G--