From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 1579 invoked by alias); 20 Oct 2004 20:26:35 -0000 Mailing-List: contact gdb-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-owner@sources.redhat.com Received: (qmail 1556 invoked from network); 20 Oct 2004 20:26:32 -0000 Received: from unknown (HELO blount.mail.mindspring.net) (207.69.200.226) by sourceware.org with SMTP; 20 Oct 2004 20:26:32 -0000 Received: from user-119a90a.biz.mindspring.com ([66.149.36.10] helo=berman.michael-chastain.com) by blount.mail.mindspring.net with esmtp (Exim 3.33 #1) id 1CKN2V-00024X-00; Wed, 20 Oct 2004 16:26:31 -0400 Received: from mindspring.com (localhost [127.0.0.1]) by berman.michael-chastain.com (Postfix) with SMTP id A04344B102; Wed, 20 Oct 2004 16:27:00 -0400 (EDT) Date: Wed, 20 Oct 2004 21:22:00 -0000 From: Michael Chastain To: halla3@corp.earthlink.net Subject: Re: compile error on solaris 8 and 2.6 Cc: gdb@sources.redhat.com, brobecker@gnat.com Message-ID: <4176CA13.nail4RV11TEFL@mindspring.com> References: <1098287184.27340.41.camel@flagg> <20041020174438.GE3527@gnat.com> <4176AEA7.nail4LS113L23@mindspring.com> <1098301417.27340.114.camel@flagg> <1098303035.27340.134.camel@flagg> In-Reply-To: <1098303035.27340.134.camel@flagg> User-Agent: nail 10.8 6/28/04 MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-SW-Source: 2004-10/txt/msg00382.txt.bz2 Andrew Hall wrote: > Scratch that...it's --disable-tui not --without-tui. So now thats its > compiling, what is the impact of disabling tui. What will I not be able > to use w/in gdb now that I have disabled tui? "tui" stands for "text user interface". The classic gdb interface is the command-line interface. It looks like this: GNU gdb 6.2.50_2004-10-15-cvs Copyright 2004 Free Software Foundation, Inc. GDB is free software, covered by the GNU General Public License, and you are welcome to change it and/or distribute copies of it under certain conditions. Type "show copying" to see the conditions. There is absolutely no warranty for GDB. Type "show warranty" for details. This GDB was configured as "i686-pc-linux-gnu"...Using host libthread_db library "/lib/libthread_db.so.1". (gdb) gdbtui looks like this: ┌──hello.c────────────────────────────────────────────────────────────────── │4 { │ │5 printf ("hello world\n"); │ │6 return 0; │ │7 } │ │8 │ │9 │ │10 │ │11 │ │12 │ │13 │ │14 │ │15 │ │16 │ └───────────────────────────────────────────────────────────────────────────┘ exec No process In: Line: ?? PC: 0x0 GDB is free software, covered by the GNU General Public License, and you are welcome to change it and/or distribute copies of it under certain conditions. Type "show copying" to see the conditions. There is absolutely no warranty for GDB. Type "show warranty" for details. This GDB was configured as "i686-pc-linux-gnu"...Using host libthread_db library "/lib/libthread_db.so.1". That is, it looks more like vi or emacs, and less like a shell session. Michael