diff options
author | Christopher Faylor <me@cgf.cx> | 2002-08-17 02:15:05 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2002-08-17 02:15:05 +0000 |
commit | b3c12fb401031439e318a53a73f1691c7f415177 (patch) | |
tree | be2eadd4888f21a281e8648c39cea667de90de70 /winsup/Makefile.common | |
parent | d3bd3632ac06bdb7f76b13494873b3567edabcbf (diff) | |
download | cygnal-b3c12fb401031439e318a53a73f1691c7f415177.tar.gz cygnal-b3c12fb401031439e318a53a73f1691c7f415177.tar.bz2 cygnal-b3c12fb401031439e318a53a73f1691c7f415177.zip |
* Makefile.in: Change COMPILE_C* definitions.
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 b5bf09a7b..e532fc010 100644 --- a/winsup/Makefile.common +++ b/winsup/Makefile.common @@ -117,9 +117,9 @@ ifeq (,${findstring $(gcc_libdir),$(CFLAGS) $(CXXFLAGS) $(CXX) $(CC)}) GCC_INCLUDE:=-I$(gcc_libdir)/include endif -COMPILE_CXX:=$(CXX) $c -nostdinc++ -nostdinc $(ALL_CXXFLAGS) $(GCC_INCLUDE) \ +COMPILE_CXX=$(CXX) $c -nostdinc++ -nostdinc $(ALL_CXXFLAGS) $(GCC_INCLUDE) \ -fno-rtti -fno-exceptions -COMPILE_CC:=$(CC) $c -nostdinc $(ALL_CFLAGS) $(GCC_INCLUDE) +COMPILE_CC=$(CC) $c -nostdinc $(ALL_CFLAGS) $(GCC_INCLUDE) vpath %.a $(cygwin_build):$(w32api_lib):$(newlib_build)/libc:$(newlib_build)/libm |