diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2002-04-26 20:18:52 +0000 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2002-04-26 20:18:52 +0000 |
commit | 7b2b12d51bd19095edd58a7fd98ed5128e64177f (patch) | |
tree | 1dfb89b65fe8b1b7e4fbdeeaf9a7749c3a7ce926 /newlib/configure | |
parent | b807c4ad010e5b6b0b970c3291f74c852af8ac1e (diff) | |
download | newlib-7b2b12d51bd19095edd58a7fd98ed5128e64177f.zip newlib-7b2b12d51bd19095edd58a7fd98ed5128e64177f.tar.gz newlib-7b2b12d51bd19095edd58a7fd98ed5128e64177f.tar.bz2 |
2002-04-26 Jeff Johnston <jjohnstn@redhat.com>
* configure.in (CC_FOR_NEWLIB): New variable that
bases on $(CC) and adds targ-include and libc/include as
-isystem directives if they are not already part of $(CC).
* Makefile.am (AM_MAKEFLAGS): Change setting of CC to equal
$(CC_FOR_NEWLIB).
* configure: Regenerated.
* Makefile.in: Ditto.
Diffstat (limited to 'newlib/configure')
-rwxr-xr-x | newlib/configure | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/newlib/configure b/newlib/configure index 5bece95..1cbcb39 100755 --- a/newlib/configure +++ b/newlib/configure @@ -2386,6 +2386,15 @@ else HAVE_DOC_FALSE= fi +# These get added in the top-level configure.in, except in the case where +# newlib is being built natively. +if test -z `echo ${CC} | grep \/libc\/include`; then + CC_FOR_NEWLIB="${CC} -isystem $PWD/targ-include -isystem ${newlib_basedir}/libc/include" +else + CC_FOR_NEWLIB="${CC}" +fi + + subdirs="${configdirs}" @@ -2452,11 +2461,6 @@ if test -z "$CC_FOR_BUILD"; then fi -# These get added in the top-level configure.in, except in the case where -# newlib is being built natively. -if test -z `echo ${CC} | grep \/libc\/include`; then - CC="${CC} -isystem $PWD/targ-include -isystem ${newlib_basedir}/libc/include" -fi if test "${multilib}" = "yes"; then multilib_arg="--enable-multilib" @@ -2662,6 +2666,7 @@ s%@NEWLIB_HW_FP_TRUE@%$NEWLIB_HW_FP_TRUE%g s%@NEWLIB_HW_FP_FALSE@%$NEWLIB_HW_FP_FALSE%g s%@HAVE_DOC_TRUE@%$HAVE_DOC_TRUE%g s%@HAVE_DOC_FALSE@%$HAVE_DOC_FALSE%g +s%@CC_FOR_NEWLIB@%$CC_FOR_NEWLIB%g s%@subdirs@%$subdirs%g s%@CRT0@%$CRT0%g s%@CRT0_DIR@%$CRT0_DIR%g |