aboutsummaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorPekka Seppänen <pexu@gcc.mail.kapsi.fi>2021-12-02 15:58:49 -0500
committerJeff Law <jeffreyalaw@gmail.com>2021-12-02 15:59:37 -0500
commitc841dc0a4dd944cf8f76f414a286aedff1e38dce (patch)
tree148d2e18126b95a20bf324b8f5a6f97983f90843 /configure
parent25abbb9249685c8519d06e1d98cd6803568b6eb7 (diff)
downloadgcc-c841dc0a4dd944cf8f76f414a286aedff1e38dce.zip
gcc-c841dc0a4dd944cf8f76f414a286aedff1e38dce.tar.gz
gcc-c841dc0a4dd944cf8f76f414a286aedff1e38dce.tar.bz2
Adjust CPP_FOR_BUILD
Hi. CPP/CPPFLAGS were changed by commit 84401ce5fb4ecab55decb472b168100e7593e01f. That commit uses CPP as a default for CPP_FOR_BUILD. Unless CPP is defined, GNU make defaults CPP as `$(CC) -E'. Given the context, this is now incorrect, since CC_FOR_BUILD should be used. Fixes PR103011. -- Pekka gcc/Changelog: * configure: Regenerate. * configure.ac: For CPP_FOR_BUILD use $(CC_FOR_BUILD) -E instead of $(CPP).
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index f8e6e2c3..7f619d2 100755
--- a/configure
+++ b/configure
@@ -4094,7 +4094,7 @@ if test "${build}" != "${host}" ; then
AR_FOR_BUILD=${AR_FOR_BUILD-ar}
AS_FOR_BUILD=${AS_FOR_BUILD-as}
CC_FOR_BUILD=${CC_FOR_BUILD-gcc}
- CPP_FOR_BUILD="${CPP_FOR_BUILD-\$(CPP)}"
+ CPP_FOR_BUILD="${CPP_FOR_BUILD-\$(CC_FOR_BUILD) -E}"
CXX_FOR_BUILD=${CXX_FOR_BUILD-g++}
DSYMUTIL_FOR_BUILD=${DSYMUTIL_FOR_BUILD-dsymutil}
GFORTRAN_FOR_BUILD=${GFORTRAN_FOR_BUILD-gfortran}