Skip to content

Commit bc96d4b

Browse files
authored
Merge pull request #4119 from xionghul/dev
Fix zstd-pgo run error
2 parents d27a4cd + bf4a43f commit bc96d4b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

programs/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ zstd-dll : zstd
232232
.PHONY: zstd-pgo
233233
zstd-pgo : LLVM_PROFDATA?=llvm-profdata
234234
zstd-pgo : PROF_GENERATE_FLAGS=-fprofile-generate $(if $(findstring gcc,$(CC)),-fprofile-dir=.)
235-
zstd-pgo : PROF_USE_FLAGS=-fprofile-use $(if $(findstring gcc,$(CC)),-fprofile-dir=. -Werror=missing-profile -Wno-error=coverage-mismatch)
235+
zstd-pgo : PROF_USE_FLAGS=-fprofile-use $(if $(findstring gcc,$(CC)),-fprofile-dir=. -Wno-error=missing-profile -Wno-error=coverage-mismatch)
236236
zstd-pgo :
237237
$(MAKE) clean HASH_DIR=$(HASH_DIR)
238238
$(MAKE) zstd HASH_DIR=$(HASH_DIR) MOREFLAGS="$(PROF_GENERATE_FLAGS)"

0 commit comments

Comments
 (0)