* Makefile.common (LIBGCC): Find libstdc++.a as well as libc.a since builtin
functions are in this library in newer gcc's.
This commit is contained in:
parent
5a84a8dc2e
commit
5693c8d55b
|
@ -1,3 +1,8 @@
|
||||||
|
Sat Oct 21 18:01:22 2000 Christopher Faylor <cgf@cygnus.com>
|
||||||
|
|
||||||
|
* Makefile.common (LIBGCC): Find libstdc++.a as well as libc.a since
|
||||||
|
builtin functions are in this library in newer gcc's.
|
||||||
|
|
||||||
Sun Oct 1 22:02:38 2000 Christopher Faylor <cgf@cygnus.com>
|
Sun Oct 1 22:02:38 2000 Christopher Faylor <cgf@cygnus.com>
|
||||||
|
|
||||||
* Makefile.common: Extend VERBOSE default.
|
* Makefile.common: Extend VERBOSE default.
|
||||||
|
|
|
@ -85,8 +85,8 @@ c=-E
|
||||||
o=.E
|
o=.E
|
||||||
endif
|
endif
|
||||||
|
|
||||||
LIBGCC:=${subst \,/,${shell $(CC_FOR_TARGET) -print-libgcc-file-name}}
|
LIBGCC:=${subst \,/,${shell $(CC_FOR_TARGET) -print-libgcc-file-name; exec $(CC_FOR_TARGET) -print-file-name=libstdc++.a}}
|
||||||
GCC_INCLUDE:=${dir $(LIBGCC)}/include
|
GCC_INCLUDE:=${dir ${word 1,$(LIBGCC)}}/include
|
||||||
|
|
||||||
COMPILE_CXX:=$(CC) $c -nostdinc++ $(ALL_CXXFLAGS) -I$(GCC_INCLUDE) \
|
COMPILE_CXX:=$(CC) $c -nostdinc++ $(ALL_CXXFLAGS) -I$(GCC_INCLUDE) \
|
||||||
-fno-rtti -fno-exceptions
|
-fno-rtti -fno-exceptions
|
||||||
|
|
Loading…
Reference in New Issue