aboutgitcodebugslistschat
path: root/Makefile
diff options
context:
space:
mode:
authorDavid Gibson <david@gibson.dropbear.id.au>2023-11-16 20:15:59 +1100
committerStefano Brivio <sbrivio@redhat.com>2023-11-19 09:10:30 +0100
commit4f1709db1b61c14729a6313d860323ec65772a37 (patch)
tree47d10806cf44caf84a38126e594facb3a40aad56 /Makefile
parentf7724647b19e0e20d6a11e0405f15e4ff169394e (diff)
downloadpasst-4f1709db1b61c14729a6313d860323ec65772a37.tar
passt-4f1709db1b61c14729a6313d860323ec65772a37.tar.gz
passt-4f1709db1b61c14729a6313d860323ec65772a37.tar.bz2
passt-4f1709db1b61c14729a6313d860323ec65772a37.tar.lz
passt-4f1709db1b61c14729a6313d860323ec65772a37.tar.xz
passt-4f1709db1b61c14729a6313d860323ec65772a37.tar.zst
passt-4f1709db1b61c14729a6313d860323ec65772a37.zip
valgrind: Don't disable optimizations for valgrind builds2023_11_19.4f1709d
When we plan to use valgrind, we need to build passt a bit differently: * We need debug symbols so that valgrind can match problems it finds to meaningful locations * We need to allow additional syscalls in the seccomp filter, because valgrind's wrappers need them Currently we also disable optimization (-O0). This is unfortunate, because it will make valgrind tests even slower than they'd otherwise be. Worse, it's possible that the asm behaviour without optimization might be different enough that valgrind could miss a use of uninitialized variable or other fault it would detect. I suspect this was originally done because without it inlining could mean that suppressions we use don't reliably match the places we want them to. Alas, it turns out this is true even with -O0. We've now implemented a more robust workaround for this (explicit ((noinline)) attributes when compiled with -DVALGRIND). So, we can re-enable optimization for valgrind builds, making them closer to regular builds. Signed-off-by: David Gibson <david@gibson.dropbear.id.au> Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 57b2544..6c53695 100644
--- a/Makefile
+++ b/Makefile
@@ -128,7 +128,7 @@ qrap: $(QRAP_SRCS) passt.h
valgrind: EXTRA_SYSCALLS += rt_sigprocmask rt_sigtimedwait rt_sigaction \
getpid gettid kill clock_gettime mmap \
munmap open unlink gettimeofday futex
-valgrind: FLAGS:=-g -O0 $(filter-out -O%,$(FLAGS)) -DVALGRIND
+valgrind: FLAGS += -g -DVALGRIND
valgrind: all
.PHONY: clean