diff options
author | Christopher Faylor <me@cgf.cx> | 2003-03-09 19:46:29 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2003-03-09 19:46:29 +0000 |
commit | 90fec0fa7a96fbf5a2c39be1410336e3f84da477 (patch) | |
tree | 430a2878667174252ef60d0f28db914be58715ba | |
parent | bc1c4e1e64ab2a307cdf390f24e4eb9bd9bd12d6 (diff) | |
download | newlib-90fec0fa7a96fbf5a2c39be1410336e3f84da477.zip newlib-90fec0fa7a96fbf5a2c39be1410336e3f84da477.tar.gz newlib-90fec0fa7a96fbf5a2c39be1410336e3f84da477.tar.bz2 |
* winsup.api/winsup.exp: Use -nostdinc when compiling.
* Makefile.in: Specifically search compiler include directory since it is now
stripped via -nostdinc.
-rw-r--r-- | winsup/testsuite/ChangeLog | 6 | ||||
-rw-r--r-- | winsup/testsuite/Makefile.in | 4 |
2 files changed, 10 insertions, 0 deletions
diff --git a/winsup/testsuite/ChangeLog b/winsup/testsuite/ChangeLog index 15b1c68..31bc32e 100644 --- a/winsup/testsuite/ChangeLog +++ b/winsup/testsuite/ChangeLog @@ -1,3 +1,9 @@ +2003-03-09 Christopher Faylor <cgf@redhat.com> + + * winsup.api/winsup.exp: Use -nostdinc when compiling. + * Makefile.in: Specifically search compiler include directory since it + is now stripped via -nostdinc. + 2003-03-09 Corinna Vinschen <corinna@vinschen.de> * winsup.api/ltp/fork10.c (main): Remove non-portable declaration diff --git a/winsup/testsuite/Makefile.in b/winsup/testsuite/Makefile.in index 9cab7d1..3628664 100644 --- a/winsup/testsuite/Makefile.in +++ b/winsup/testsuite/Makefile.in @@ -70,6 +70,9 @@ AS:=@AS@ # include $(srcdir)/../Makefile.common +override CC:=$(CC) $(GCC_INCLUDE) +export CC + INSTALL_DATA:=$(SHELL) $(updir1)/install-sh -c # Setup the testing framework, if you have one @@ -94,6 +97,7 @@ TESTSUP_OFILES:=${sort ${addsuffix .o,${basename ${notdir ${wildcard $(libltp_sr override ALL_CFLAGS:=${filter-out -O%,$(ALL_CFLAGS)} override COMPILE_CC:=${filter-out -O%,$(COMPILE_CC)} override CFLAGS:=${filter-out -O%,$(CFLAGS)} +export CFLAGS .PHONY: all force dll_ofiles install all_target install_target all_host install_host |