aboutsummaryrefslogtreecommitdiffstats
path: root/src/firejail/chroot.c
diff options
context:
space:
mode:
authorLibravatar Kelvin M. Klann <kmk3.code@protonmail.com>2021-06-03 18:26:31 -0300
committerLibravatar Kelvin M. Klann <kmk3.code@protonmail.com>2021-06-18 14:48:56 -0300
commit31557e9c770d9da7199a64f40f17f50a6686bcb1 (patch)
treec172939c5548c05409caf42955ba015a98480d53 /src/firejail/chroot.c
parentappimage: automatically detect profile (diff)
downloadfirejail-31557e9c770d9da7199a64f40f17f50a6686bcb1.tar.gz
firejail-31557e9c770d9da7199a64f40f17f50a6686bcb1.tar.zst
firejail-31557e9c770d9da7199a64f40f17f50a6686bcb1.zip
gcov: add missing gcov.h includes
Fixes the following "implicit declaration" warning (13 occurrences in total) when building with gcov support: $ pacman -Q gcc10 gcc10 1:10.2.0-3 $ CC=gcc-10 && export CC $ ./configure --prefix=/usr --enable-apparmor --enable-gcov >/dev/null $ make >/dev/null appimage.c: In function ‘appimage_set’: appimage.c:140:2: warning: implicit declaration of function ‘__gcov_flush’ [-Wimplicit-function-declaration] 140 | __gcov_flush(); | ^~~~~~~~~~~~ interface.c: In function ‘print_sandbox’: interface.c:149:3: warning: implicit declaration of function ‘__gcov_flush’ [-Wimplicit-function-declaration] 149 | __gcov_flush(); | ^~~~~~~~~~~~ netstats.c: In function ‘netstats’: netstats.c:246:4: warning: implicit declaration of function ‘__gcov_flush’ [-Wimplicit-function-declaration] 246 | __gcov_flush(); | ^~~~~~~~~~~~ [...] Note: The commands above were executed from makepkg, while building firejail-git from the AUR. Note2: gcc-10 was used because the build fails with the current gcc version (11.1.0) on Artix Linux. The failure happens because __gcov_flush was removed on gcc 11.1.0[1]; this will be addressed later. Note3: The following command helped find the affected files: $ git grep -Fl __gcov -- src [1] https://gcc.gnu.org/git/?p=gcc.git;a=commit;h=811b7636cb8c10f1a550a76242b5666c7ae36da2
Diffstat (limited to 'src/firejail/chroot.c')
-rw-r--r--src/firejail/chroot.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/firejail/chroot.c b/src/firejail/chroot.c
index 05d89a866..edc31cdea 100644
--- a/src/firejail/chroot.c
+++ b/src/firejail/chroot.c
@@ -29,6 +29,9 @@
29#define O_PATH 010000000 29#define O_PATH 010000000
30#endif 30#endif
31 31
32#ifdef HAVE_GCOV
33#include <gcov.h>
34#endif
32 35
33// exit if error 36// exit if error
34void fs_check_chroot_dir(void) { 37void fs_check_chroot_dir(void) {