diff options
author | Christopher Faylor <me@cgf.cx> | 2000-10-21 22:01:55 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2000-10-21 22:01:55 +0000 |
commit | 5693c8d55b17578934c59013ea440f8a2056d915 (patch) | |
tree | c37e0c7e6c636fa50aa14bbbca47a717ff5877fa /winsup/Makefile.common | |
parent | 5a84a8dc2ec8fdf7540d647788a7344492f500d8 (diff) | |
download | cygnal-5693c8d55b17578934c59013ea440f8a2056d915.tar.gz cygnal-5693c8d55b17578934c59013ea440f8a2056d915.tar.bz2 cygnal-5693c8d55b17578934c59013ea440f8a2056d915.zip |
* Makefile.common (LIBGCC): Find libstdc++.a as well as libc.a since builtin
functions are in this library in newer gcc's.
Diffstat (limited to 'winsup/Makefile.common')
-rw-r--r-- | winsup/Makefile.common | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/winsup/Makefile.common b/winsup/Makefile.common index 38a5779d7..86ac71fd9 100644 --- a/winsup/Makefile.common +++ b/winsup/Makefile.common @@ -85,8 +85,8 @@ c=-E o=.E endif -LIBGCC:=${subst \,/,${shell $(CC_FOR_TARGET) -print-libgcc-file-name}} -GCC_INCLUDE:=${dir $(LIBGCC)}/include +LIBGCC:=${subst \,/,${shell $(CC_FOR_TARGET) -print-libgcc-file-name; exec $(CC_FOR_TARGET) -print-file-name=libstdc++.a}} +GCC_INCLUDE:=${dir ${word 1,$(LIBGCC)}}/include COMPILE_CXX:=$(CC) $c -nostdinc++ $(ALL_CXXFLAGS) -I$(GCC_INCLUDE) \ -fno-rtti -fno-exceptions |