From 69836ab7958c8bece9a7e30204f4bf6c2c2f62f7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Mon, 21 Dec 2020 12:24:29 +0100 Subject: [PATCH] install.md: add -Wno-profile-instr-unprofiled to clang flags in PGO builds --- INSTALL.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/INSTALL.md b/INSTALL.md index 9b057080..0e0f8ddd 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -201,7 +201,10 @@ later have a regression where PGO with `-O2` is **much** slower. If you are using Clang instead of GCC, use the following `CFLAGS` instead: ```sh -export CFLAGS="$CFLAGS -O3 -march=native -Wno-ignored-optimization-argument -Wno-profile-instr-out-of-date" +export CFLAGS="$CFLAGS -O3 -march=native \ + -Wno-ignored-optimization-argument \ + -Wno-profile-instr-out-of-date \ + -Wno-profile-instr-unprofiled" ``` Then, tell meson we want to _generate_ profiling data, and build: