diff options
author | Richard Weinberger <richard@nod.at> | 2018-10-30 12:58:12 +0100 |
---|---|---|
committer | Richard Weinberger <richard@nod.at> | 2018-12-27 22:48:19 +0100 |
commit | 550ed0e2036663b35cec12374b835444f9c60454 (patch) | |
tree | 74659cbec867f706a639cb9cd4d5516754d5ad4a /arch/um | |
parent | um: Include sys/uio.h to have writev() (diff) | |
download | linux-550ed0e2036663b35cec12374b835444f9c60454.tar.xz linux-550ed0e2036663b35cec12374b835444f9c60454.zip |
um: Make GCOV depend on !KCOV
Both do more or less the same thing and are mutually exclusive.
If both are enabled the build will fail.
Sooner or later we can kill UML's GCOV.
Signed-off-by: Richard Weinberger <richard@nod.at>
Diffstat (limited to 'arch/um')
-rw-r--r-- | arch/um/Kconfig.debug | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/um/Kconfig.debug b/arch/um/Kconfig.debug index 2014597605ea..85726eeec345 100644 --- a/arch/um/Kconfig.debug +++ b/arch/um/Kconfig.debug @@ -16,6 +16,7 @@ config GPROF config GCOV bool "Enable gcov support" depends on DEBUG_INFO + depends on !KCOV help This option allows developers to retrieve coverage data from a UML session. |