Merge pull request #284387 from mweinelt/buildmozillamach-pgo-flags

buildMozillaMach: fix pgo configure flags
This commit is contained in:
Martin Weinelt 2024-01-28 04:19:05 +01:00 committed by GitHub
commit 68330abc1b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -320,11 +320,9 @@ buildStdenv.mkDerivation {
unset 'configureFlagsArray[i]'
fi
done
configureFlagsArray+=(
"--enable-profile-use=cross"
"--with-pgo-profile-path="$TMPDIR/merged.profdata""
"--with-pgo-jarlog="$TMPDIR/jarlog""
)
appendToVar configureFlags --enable-profile-use=cross
appendToVar configureFlags --with-pgo-profile-path=$TMPDIR/merged.profdata
appendToVar configureFlags --with-pgo-jarlog=$TMPDIR/jarlog
${lib.optionalString stdenv.hostPlatform.isMusl ''
LDFLAGS="$OLD_LDFLAGS"
unset OLD_LDFLAGS