summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorErlend E. Aasland <erlend@python.org>2024-04-12 14:33:29 (GMT)
committerGitHub <noreply@github.com>2024-04-12 14:33:29 (GMT)
commit4ce10da36ff4c29dbf2cc40ebfcbcd260b635e05 (patch)
tree60ae0d051a319d48f778d28baab116168e84e548 /configure
parent2d3d9b4461d0e2cb475014868af3c2f241cb6495 (diff)
downloadcpython-4ce10da36ff4c29dbf2cc40ebfcbcd260b635e05.zip
cpython-4ce10da36ff4c29dbf2cc40ebfcbcd260b635e05.tar.gz
cpython-4ce10da36ff4c29dbf2cc40ebfcbcd260b635e05.tar.bz2
gh-96398: Detect emcc and mpicc in compiler names in configure (#117819)
- emcc defines __EMSCRIPTEN__ - mpicc doesn't define anything in particular; detect it using basename
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure7
1 files changed, 6 insertions, 1 deletions
diff --git a/configure b/configure
index 65210e8..027ef83 100755
--- a/configure
+++ b/configure
@@ -6110,7 +6110,9 @@ then :
else $as_nop
cat > conftest.c <<EOF
-#if defined(__INTEL_COMPILER) || defined(__ICC)
+#if defined(__EMSCRIPTEN__)
+ emcc
+#elif defined(__INTEL_COMPILER) || defined(__ICC)
icc
#elif defined(__ibmxl__) || defined(__xlc__) || defined(__xlC__)
xlc
@@ -6127,6 +6129,9 @@ EOF
if $CPP $CPPFLAGS conftest.c >conftest.out 2>/dev/null; then
ac_cv_cc_name=`grep -v '^#' conftest.out | grep -v '^ *$' | tr -d ' '`
+ if $(expr "//$CC" : '.*/\(.*\)') = "mpicc"; then
+ ac_cv_cc_name="mpicc"
+ fi
else
ac_cv_cc_name="unknown"
fi