From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 4032 invoked by alias); 13 Jan 2006 10:41:35 -0000 Received: (qmail 4024 invoked by uid 22791); 13 Jan 2006 10:41:35 -0000 X-Spam-Check-By: sourceware.org Received: from main.gmane.org (HELO ciao.gmane.org) (80.91.229.2) by sourceware.org (qpsmtpd/0.31) with ESMTP; Fri, 13 Jan 2006 10:41:24 +0000 Received: from root by ciao.gmane.org with local (Exim 4.43) id 1ExMMs-0000SD-Tz for gdb@sources.redhat.com; Fri, 13 Jan 2006 11:41:15 +0100 Received: from ip127.bb146.pacific.net.hk ([202.64.146.127]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 13 Jan 2006 11:41:14 +0100 Received: from tausq by ip127.bb146.pacific.net.hk with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 13 Jan 2006 11:41:14 +0100 To: gdb@sources.redhat.com From: Randolph Chung Subject: Re: Problem building GDB 6.3 on HP-UX 11.11 Date: Fri, 13 Jan 2006 10:41:00 -0000 Message-ID: <43C781E1.3060704@debian.org> References: <200601130916.34315.ext-dirk.heinrichs@nokia.com> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit User-Agent: Thunderbird 1.5 (Windows/20051201) In-Reply-To: <200601130916.34315.ext-dirk.heinrichs@nokia.com> X-IsSubscribed: yes Mailing-List: contact gdb-help@sourceware.org; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-owner@sourceware.org X-SW-Source: 2006-01/txt/msg00101.txt.bz2 Dirk Heinrichs wrote: > Hello, > > I'm trying to build GDB 6.3 on HP-UX, but linking fails with the following > error: > > gcc -g -O2 -Dvfork=fork \ > -o gdb gdb.o libgdb.a \ > ../bfd/libbfd.a ../readline/libreadline.a ../opcodes/libopcodes.a ../libiberty/libiberty.a > -lncurses -lm ../libiberty/libiberty.a > /usr/ccs/bin/ld: Unsatisfied symbols: > __getcury (code) > __getcurx (code) > collect2: ld returned 1 exit status > make[1]: *** [gdb] Error 1 > make[1]: Leaving directory `/vob/apps/gdb/build-HP-UX/gdb' Usually this means that gdb is picking up the system curses headers, but it's linking against ncurses. randolph