From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 29139 invoked by alias); 29 Dec 2005 05:38:38 -0000 Received: (qmail 28900 invoked by uid 22791); 29 Dec 2005 05:38:37 -0000 X-Spam-Check-By: sourceware.org Received: from nproxy.gmail.com (HELO nproxy.gmail.com) (64.233.182.194) by sourceware.org (qpsmtpd/0.31) with ESMTP; Thu, 29 Dec 2005 05:38:34 +0000 Received: by nproxy.gmail.com with SMTP id c31so613575nfb for ; Wed, 28 Dec 2005 21:38:31 -0800 (PST) Received: by 10.48.244.20 with SMTP id r20mr362370nfh; Wed, 28 Dec 2005 21:38:30 -0800 (PST) Received: by 10.48.229.18 with HTTP; Wed, 28 Dec 2005 21:38:29 -0800 (PST) Message-ID: <6f48278f0512282138i3c2a193fqdd4cf23182e75d2f@mail.gmail.com> Date: Thu, 29 Dec 2005 05:38:00 -0000 From: Jie Zhang To: gdb@sources.redhat.com Subject: An issue in configure.ac of gdbserver Cc: Daniel Jacobowitz MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline 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: 2005-12/txt/msg00209.txt.bz2 Hi, This piece of code in configure.ac of gdbserver does not work as intended, since gcc only gives an warning if it does not accept -rdynamic. LDFLAGS=3D"$LDFLAGS -rdynamic" AC_TRY_LINK([], [], [RDYNAMIC=3D-rdynamic], [RDYNAMIC=3D]) AC_SUBST(RDYNAMIC) Regards, Jie