aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVitaliy Ivanov <[email protected]>2011-07-26 16:08:49 -0700
committerLinus Torvalds <[email protected]>2011-07-26 16:49:45 -0700
commit947be5dfdaaef01b43a3d5444688ebef2bd263d4 (patch)
tree5abd88d64059278c952a84c9a07a59d8b50040d6
parent444d2921215ae6c21f90eb5fa5d03f784f84f1aa (diff)
gcov: disable CONSTRUCTORS for UML
Selecting GCOV for UML causing configuration mismatch: warning: (GCOV_KERNEL) selects CONSTRUCTORS which has unmet direct dependencies (!UML) Constructors are not needed for UML. Signed-off-by: Vitaliy Ivanov <[email protected]> Cc: Peter Oberparleiter <[email protected]> Acked-by: Richard Weinberger <[email protected]> Acked-by: WANG Cong <[email protected]> Signed-off-by: Andrew Morton <[email protected]> Signed-off-by: Linus Torvalds <[email protected]>
-rw-r--r--kernel/gcov/Kconfig2
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/gcov/Kconfig b/kernel/gcov/Kconfig
index 5bf924d80b5c..a92028196cc1 100644
--- a/kernel/gcov/Kconfig
+++ b/kernel/gcov/Kconfig
@@ -3,7 +3,7 @@ menu "GCOV-based kernel profiling"
config GCOV_KERNEL
bool "Enable gcov-based kernel profiling"
depends on DEBUG_FS
- select CONSTRUCTORS
+ select CONSTRUCTORS if !UML
default n
---help---
This option enables gcov-based code profiling (e.g. for code coverage