You've already forked CoreMP135_buildroot
mirror of
https://github.com/m5stack/CoreMP135_buildroot.git
synced 2026-05-20 11:24:29 -07:00
56d9b88768
Add gcc >= 5 dependency because __builtin_add_overflow is unconditionally used since https://github.com/SELinuxProject/selinux/commit/0744fa4f533c765d0a704fe8aa7174a0f93eb7bc https://github.com/SELinuxProject/selinux/releases/tag/3.3 Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
22 lines
806 B
Plaintext
22 lines
806 B
Plaintext
config BR2_PACKAGE_SEMODULE_UTILS
|
|
bool "semodule-utils"
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS # libsepol
|
|
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_5 # libsepol
|
|
select BR2_PACKAGE_LIBSEPOL
|
|
help
|
|
semodule-utils is a package that contains tools for handling
|
|
selinux modules.
|
|
|
|
The package will install the following utilities:
|
|
* semodule_deps - Show the dependencies between SELinux
|
|
policy packages.
|
|
* semodule_expand - Expand a SELinux policy module package.
|
|
* semodule_link - Link SELinux policy module packages together
|
|
* semodule_package - Create a SELinux policy module package.
|
|
|
|
https://github.com/SELinuxProject/selinux/wiki/Releases
|
|
|
|
comment "semodule-utils needs a toolchain w/ threads, gcc >= 5"
|
|
depends on !BR2_TOOLCHAIN_HAS_THREADS || \
|
|
!BR2_TOOLCHAIN_GCC_AT_LEAST_5
|