summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorErlend E. Aasland <erlend@python.org>2024-04-12 09:36:40 (GMT)
committerGitHub <noreply@github.com>2024-04-12 09:36:40 (GMT)
commit1ddbeae040beb35614f3933f340e0dedcc1e98e4 (patch)
tree611ec2238c87c47ba7d1f203d6c944bc718b182c /configure
parent49af71a04a855eb150efa4d5ca638b72f167489a (diff)
downloadcpython-1ddbeae040beb35614f3933f340e0dedcc1e98e4.zip
cpython-1ddbeae040beb35614f3933f340e0dedcc1e98e4.tar.gz
cpython-1ddbeae040beb35614f3933f340e0dedcc1e98e4.tar.bz2
gh-117752: Autoconf: fix PGO builds for 'make -C build' incantations (#117803)
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure8
1 files changed, 4 insertions, 4 deletions
diff --git a/configure b/configure
index f2e628c..65210e8 100755
--- a/configure
+++ b/configure
@@ -8826,8 +8826,8 @@ case "$CC_BASENAME" in
*clang*)
# Any changes made here should be reflected in the GCC+Darwin case below
PGO_PROF_GEN_FLAG="-fprofile-instr-generate"
- PGO_PROF_USE_FLAG="-fprofile-instr-use=code.profclangd"
- LLVM_PROF_MERGER="${LLVM_PROFDATA} merge -output=code.profclangd *.profclangr"
+ PGO_PROF_USE_FLAG="-fprofile-instr-use=\"\$(shell pwd)/code.profclangd\""
+ LLVM_PROF_MERGER=" ${LLVM_PROFDATA} merge -output=\"\$(shell pwd)/code.profclangd\" \"\$(shell pwd)\"/*.profclangr "
LLVM_PROF_FILE="LLVM_PROFILE_FILE=\"\$(shell pwd)/code-%p.profclangr\""
if test $LLVM_PROF_FOUND = not-found
then
@@ -8842,8 +8842,8 @@ case "$CC_BASENAME" in
case $ac_sys_system in
Darwin*)
PGO_PROF_GEN_FLAG="-fprofile-instr-generate"
- PGO_PROF_USE_FLAG="-fprofile-instr-use=code.profclangd"
- LLVM_PROF_MERGER="${LLVM_PROFDATA} merge -output=code.profclangd *.profclangr"
+ PGO_PROF_USE_FLAG="-fprofile-instr-use=\"\$(shell pwd)/code.profclangd\""
+ LLVM_PROF_MERGER=" ${LLVM_PROFDATA} merge -output=\"\$(shell pwd)/code.profclangd\" \"\$(shell pwd)\"/*.profclangr "
LLVM_PROF_FILE="LLVM_PROFILE_FILE=\"\$(shell pwd)/code-%p.profclangr\""
if test "${LLVM_PROF_FOUND}" = "not-found"
then