diff options
author | Florian Weimer <fweimer@redhat.com> | 2016-09-21 10:45:32 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2016-09-21 10:45:32 +0200 |
commit | fc3e1337be1c6935ab58bd13520f97a535cf70cc (patch) | |
tree | 05a5860b2b10ad95a4ae6b23012a3019d8830f84 /config.make.in | |
parent | 612148c6608fb2df34a8d01ccb3b552cd63eb263 (diff) | |
download | glibc-fc3e1337be1c6935ab58bd13520f97a535cf70cc.zip glibc-fc3e1337be1c6935ab58bd13520f97a535cf70cc.tar.gz glibc-fc3e1337be1c6935ab58bd13520f97a535cf70cc.tar.bz2 |
Avoid running $(CXX) during build to obtain header file paths
This reduces the build time somewhat and is particularly noticeable
during rebuilds with few code changes.
Diffstat (limited to 'config.make.in')
-rw-r--r-- | config.make.in | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/config.make.in b/config.make.in index 95c6f36..04a8b3e 100644 --- a/config.make.in +++ b/config.make.in @@ -45,6 +45,8 @@ defines = @DEFINES@ sysheaders = @sysheaders@ sysincludes = @SYSINCLUDES@ c++-sysincludes = @CXX_SYSINCLUDES@ +c++-cstdlib-header = @CXX_CSTDLIB_HEADER@ +c++-cmath-header = @CXX_CMATH_HEADER@ all-warnings = @all_warnings@ enable-werror = @enable_werror@ |