From: Eli Zaretskii Date: Mon, 25 Feb 2002 16:09:46 +0000 (+0000) Subject: Add NM and CFLAGS to the exports. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=d951901f7b5af6ad911b2a3c8972facd397ec5a7;p=binutils-gdb.git Add NM and CFLAGS to the exports. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 00a9570779d..e153d08ad04 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2002-02-25 Eli Zaretskii + + * config/djgpp/djconfig.sh: Set NM=nm and CFLAGS="-g -O2" in the + list of exported variables. + 2002-02-24 Daniel Jacobowitz * gdbserver/configure.srv: New file. diff --git a/gdb/config/djgpp/djconfig.sh b/gdb/config/djgpp/djconfig.sh index cb9664be3f1..23be0d5fdad 100644 --- a/gdb/config/djgpp/djconfig.sh +++ b/gdb/config/djgpp/djconfig.sh @@ -5,7 +5,7 @@ # configuring other GNU programs for DJGPP. # #===================================================================== -# Copyright 1997, 1999, 2000, 2001 Free Software Foundation, Inc. +# Copyright 1997, 1999, 2000, 2001, 2002 Free Software Foundation, Inc. # # Originally written by Robert Hoehne, revised by Eli Zaretskii. # This file is part of GDB. @@ -122,7 +122,9 @@ utod $srcdir/ltmain.sh # Give the configure script some hints: export LD=ld +export NM=nm export CC=gcc +export CFLAGS="-O2 -g" export RANLIB=ranlib export DEFAULT_YACC="bison -y" export YACC="bison -y"