This is the mail archive of the gdb-cvs@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[binutils-gdb] Fix snafu with latest addition to the ARM sim.


https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=db49d3d0414173fe8907dcae1cab0067d46c44cd

commit db49d3d0414173fe8907dcae1cab0067d46c44cd
Author: Nick Clifton <nickc@redhat.com>
Date:   Thu Jul 2 16:19:09 2015 +0100

    Fix snafu with latest addition to the ARM sim.
    
    	* Makefile.in (SIM_EXTRA_CFLAGS): Revert previous delta.
    	(SIM_EXTRA_LIBS): Add -lm.

Diff:
---
 sim/arm/ChangeLog   | 5 +++++
 sim/arm/Makefile.in | 3 ++-
 2 files changed, 7 insertions(+), 1 deletion(-)

diff --git a/sim/arm/ChangeLog b/sim/arm/ChangeLog
index a6533e0..acdb659 100644
--- a/sim/arm/ChangeLog
+++ b/sim/arm/ChangeLog
@@ -1,3 +1,8 @@
+2015-07-02  Nick Clifton  <nickc@redhat.com>
+
+	* Makefile.in (SIM_EXTRA_CFLAGS): Revert previous delta.
+	(SIM_EXTRA_LIBS): Add -lm.
+
 2015-06-28  Nick Clifton  <nickc@redhat.com>
 
 	* Makefile.in (SIM_EXTRA_CFLAGS): Add -lm.
diff --git a/sim/arm/Makefile.in b/sim/arm/Makefile.in
index 7605588..1eeec25 100644
--- a/sim/arm/Makefile.in
+++ b/sim/arm/Makefile.in
@@ -17,7 +17,8 @@
 
 ## COMMON_PRE_CONFIG_FRAG
 
-SIM_EXTRA_CFLAGS = -DMODET -lm
+SIM_EXTRA_CFLAGS = -DMODET
+SIM_EXTRA_LIBS = -lm
 
 SIM_OBJS = \
 	wrapper.o \


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]