python-dataproperty: bump version to 0.17.0
[buildroot-gz.git] / package / racehound / Config.in
blob2d1ccb838151ca2b2ea970a2abc41794ab839c5d
1 config BR2_PACKAGE_RACEHOUND
2         bool "racehound"
3         depends on BR2_LINUX_KERNEL
4         depends on BR2_INSTALL_LIBSTDCPP
5         depends on BR2_USE_WCHAR # elfutils
6         depends on !BR2_STATIC_LIBS # elfutils
7         depends on BR2_TOOLCHAIN_USES_UCLIBC || BR2_TOOLCHAIN_USES_GLIBC # elfutils
8         # only x86/x86_64 supported
9         depends on BR2_i386 || BR2_x86_64
10         select BR2_PACKAGE_ELFUTILS
11         select BR2_LINUX_NEEDS_MODULES # not using kernel-module infra
12         help
13           RaceHound can be used to detect data races in the Linux
14           kernel on x86.
16           RaceHound needs the following kernel configurations enabled:
17           - CONFIG_X86_32 or CONFIG_X86_64
18           - CONFIG_MODULES
19           - CONFIG_MODULE_UNLOAD
20           - CONFIG_SYSFS
21           - CONFIG_DEBUG_FS
22           - CONFIG_KALLSYMS
23           - CONFIG_KALLSYMS_ALL
24           - CONFIG_KPROBES
26           https://github.com/winnukem/racehound
28 comment "racehound needs an Linux kernel >= 3.14 to be built"
29         depends on !BR2_LINUX_KERNEL
30         depends on BR2_i386 || BR2_x86_64
32 comment "racehound needs a uClibc or glibc toolchain w/ C++, wchar, dynamic library"
33         depends on BR2_i386 || BR2_x86_64
34         depends on !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR || BR2_STATIC_LIBS \
35                 || !(BR2_TOOLCHAIN_USES_UCLIBC || BR2_TOOLCHAIN_USES_GLIBC)