diff options
author | Jeffrey Wheat <cassidy@cygnus> | 1993-09-10 16:50:52 +0000 |
---|---|---|
committer | Jeffrey Wheat <cassidy@cygnus> | 1993-09-10 16:50:52 +0000 |
commit | 8a6665aef86a116a223dd029e7974505fbf67a0f (patch) | |
tree | dcc4db8af0d633527ae4d329b6b8cb51ce05d4c8 | |
parent | 3a9149a7b79b1fc673d3068ab2d3a6b311bf2cdc (diff) | |
download | gdb-8a6665aef86a116a223dd029e7974505fbf67a0f.zip gdb-8a6665aef86a116a223dd029e7974505fbf67a0f.tar.gz gdb-8a6665aef86a116a223dd029e7974505fbf67a0f.tar.bz2 |
Changed CXX back to g++. ../gcc/xgcc breaks the cdtest because of <assert.h>
-rw-r--r-- | ld/ChangeLog | 4 | ||||
-rw-r--r-- | ld/Makefile.in | 3 |
2 files changed, 7 insertions, 0 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog index a1bf647..589b9f6 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,7 @@ +Fri Sep 10 09:36:29 1993 Jeffrey Wheat (cassidy@cygnus.com) + + * Makefile.in: Changed CXX back to g++. + Fri Sep 10 09:34:29 1993 Jeffrey Wheat (cassidy@cygnus.com) * Makefile.in: Fixed RUNTEST* CXX CXXFLAGS macros and check rule. diff --git a/ld/Makefile.in b/ld/Makefile.in index 0ecc29b..57df2c3 100644 --- a/ld/Makefile.in +++ b/ld/Makefile.in @@ -113,6 +113,9 @@ CXX = `if [ -f ../gcc/xgcc ] ; then \ fi` CXXFLAGS = -fgnu-linker +# FIX_ME: using ../gcc/xgcc breaks the cdtest. +CXX= g++ + # Setup the testing framework, if you have one RUNTEST = runtest RUNTEST_FLAGS = |