From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 17885 invoked by alias); 8 Jan 2004 00:40:32 -0000 Mailing-List: contact gdb-patches-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sources.redhat.com Received: (qmail 17854 invoked from network); 8 Jan 2004 00:40:31 -0000 Received: from unknown (HELO maynard.mail.mindspring.net) (207.69.200.243) by sources.redhat.com with SMTP; 8 Jan 2004 00:40:31 -0000 Received: from user-119a90a.biz.mindspring.com ([66.149.36.10] helo=berman.michael-chastain.com) by maynard.mail.mindspring.net with esmtp (Exim 3.33 #1) id 1AeODm-0002yJ-00; Wed, 07 Jan 2004 19:40:22 -0500 Received: by berman.michael-chastain.com (Postfix, from userid 502) id C191A4B35A; Wed, 7 Jan 2004 19:40:53 -0500 (EST) To: cagney@gnu.org, mec.gnu@mindspring.com Subject: Re: [rfa/testsuite/stabs] weird.exp: skip hp Cc: ezannoni@redhat.com, gdb-patches@sources.redhat.com Message-Id: <20040108004053.C191A4B35A@berman.michael-chastain.com> Date: Thu, 08 Jan 2004 00:40:00 -0000 From: mec.gnu@mindspring.com (Michael Elizabeth Chastain) X-SW-Source: 2004-01/txt/msg00187.txt.bz2 ac> BTW, does your get_compiler_info rewrite mean that those hpcc_... ac> variables can eventually be eliminated (replaced by test_compiler_info)? Hell yeah! In fact, get_compiler_info logs the value that it calculates for "compiler_info". gdb.log looks like this: Running /house/chastain/gdb/s1/gdb/testsuite/gdb.base/volatile.exp ... get_compiler_info: hpcc-111106 Executing on host: gcc /house/chastain/gdb/s1/gdb/testsuite/gdb.base/constvars.c -g -lm -o /house/chastain/gdb/build/hppa2.0w-hp-hpux11.11/s1-blank-gcc/gdb/testsuite/gdb.base/constvars (timeout = 300) GNU gdb 2004-01-07-cvs Copyright 2004 Free Software Foundation, Inc. (Yes, my hpcc compiler is a shell script named "gcc"). And it will be trivial to add more vendor compilers to compiler.c/compiler.cc: #if defined(__SUN_whatever) set compiler_info [join {suncc __SUN_whatever} -] #endif #if defined(__TRU64_blah) set compiler_info [join {osfcc __TRU64_blah} -] #endif Michael C