diff options
author | Marc Espie <espie@cvs.openbsd.org> | 1999-11-20 18:24:20 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 1999-11-20 18:24:20 +0000 |
commit | 1c4a3676fce5aeb3e26ee82bb20b040dbda864d6 (patch) | |
tree | 6d335579fc65a4e23c3d2e105ebb4161fd3c5e47 /gnu/egcs/gcc/f/Makefile.in | |
parent | 425e5876c658db3ac8076a8467b5ea8691f54065 (diff) |
Grab hashtab.c from the development version of gcc, add it to libiberty.
Make sure that g++ and g77 link against libiberty (fixed in dev. sources
as well).
Use hashtab functions instead of splay-trees in cse.c.
This is worth a 10% compiling speed increase on some arches, including
sparc, hppa...
Diffstat (limited to 'gnu/egcs/gcc/f/Makefile.in')
-rw-r--r-- | gnu/egcs/gcc/f/Makefile.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/egcs/gcc/f/Makefile.in b/gnu/egcs/gcc/f/Makefile.in index 96975a5d7cd..a8828a5d31e 100644 --- a/gnu/egcs/gcc/f/Makefile.in +++ b/gnu/egcs/gcc/f/Makefile.in @@ -148,7 +148,8 @@ SUBDIR_MALLOC = `if [ x$(MALLOC) != x ]; then echo ../$(MALLOC); else true; fi` # How to link with both our special library facilities # and the system's installed libraries. -LIBS = $(SUBDIR_OBSTACK) $(SUBDIR_USE_ALLOCA) $(SUBDIR_MALLOC) $(CLIB) +LIBS = $(SUBDIR_OBSTACK) $(SUBDIR_USE_ALLOCA) $(SUBDIR_MALLOC) $(CLIB) \ +$(LIBIBERTY) # Specify the directories to be searched for header files. # Both . and srcdir are used, in that order, |