diff options
author | Zack Weinberg <zackw@panix.com> | 2002-09-17 07:09:47 +0000 |
---|---|---|
committer | Zack Weinberg <zackw@panix.com> | 2002-09-17 07:09:47 +0000 |
commit | bb279dc026b594e88ac81c8f185465fdbe9351da (patch) | |
tree | 7e1a7a0bd4ae00646ca806df2c73b74488f49288 /binutils/configure.in | |
parent | d9025a1885f5d21a2589fd3fa0156263e01a301f (diff) | |
download | gdb-bb279dc026b594e88ac81c8f185465fdbe9351da.zip gdb-bb279dc026b594e88ac81c8f185465fdbe9351da.tar.gz gdb-bb279dc026b594e88ac81c8f185465fdbe9351da.tar.bz2 |
binutils:
* Makefile.am (CFILES): Add cxxfilt.c.
(cxxfilt_SOURCES): Now just cxxfilt.c $(BULIBS).
(cxxfilt_LDADD): Delete.
Remove all references to underscore.c.
Regen dependencies.
* configure.in: Define TARGET_PREPENDS_UNDERSCORE in
config.h from $UNDERSCORE, rather than AC_SUBSTing it.
* binutils/cxxfilt.c: Moved here from gcc/cp, minor
adjustments to fit into binutils framework.
* configure, config.in, Makefile.in, doc/Makefile.in: Regenerate.
gcc/cp:
* Make-lang.in: Remove all references to the demangler.
* cxxfilt.c: Moved to binutils.
Diffstat (limited to 'binutils/configure.in')
-rw-r--r-- | binutils/configure.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/binutils/configure.in b/binutils/configure.in index f2a0482..6f6cbd0 100644 --- a/binutils/configure.in +++ b/binutils/configure.in @@ -311,7 +311,8 @@ if test "x$targ_underscore" = "xyes"; then else UNDERSCORE=0 fi -AC_SUBST(UNDERSCORE) +AC_DEFINE_UNQUOTED(TARGET_PREPENDS_UNDERSCORE, $UNDERSCORE, + [Define to 1 if user symbol names have a leading underscore, 0 if not.]) # Emulation for targ_alias in `echo $target_alias $enable_targets | sed 's/,/ /g'` |