mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-12 04:27:51 -05:00
meson-pgo: use as little path quoting as possible
This commit is contained in:
parent
575f9135ae
commit
098f2c0c88
1 changed files with 5 additions and 2 deletions
|
|
@ -116,7 +116,7 @@ if [ ${do_pgo} = yes ]; then
|
|||
partial)
|
||||
./footclient --version
|
||||
./foot --version
|
||||
"${source_dir}/scripts/generate-alt-random-writes.py" \
|
||||
"${source_dir}"/scripts/generate-alt-random-writes.py \
|
||||
--rows=67 \
|
||||
--cols=135 \
|
||||
${script_options} \
|
||||
|
|
@ -129,7 +129,10 @@ if [ ${do_pgo} = yes ]; then
|
|||
rm "${tmp_file}"
|
||||
|
||||
if [ ${compiler} = clang ]; then
|
||||
llvm-profdata merge "${build_dir}"/default_*.profraw --output="${build_dir}/default.profdata"
|
||||
llvm-profdata \
|
||||
merge \
|
||||
"${build_dir}"/default_*.profraw \
|
||||
--output="${build_dir}"/default.profdata
|
||||
fi
|
||||
|
||||
meson configure "${build_dir}" -Db_pgo=use
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue