Browse Source
px4_io - add knob to ensure ARCH_MATH_H is kept Upstream changes added ARCH_HAVE_MATH_H to protect from archs without math.h from causing isses for users setting CONFIG_ARCH_MATH_H and getting errors. PX4 provides a math.h and we need CONFIG_ARCH_MATH_H set. So this Selects ARCH_HAVE_MATH_H perserving CONFIG_ARCH_MATH_H a defconfigsbg
3 changed files with 13 additions and 2 deletions
@ -0,0 +1,9 @@
@@ -0,0 +1,9 @@
|
||||
# |
||||
# For a description of the syntax of this configuration file, |
||||
# see misc/tools/kconfig-language.txt. |
||||
# |
||||
# Hack to ensure ARCH_MATH_H is kept |
||||
config BOARD_HAVE_MATH_H |
||||
bool "Provide ARCH math.h (selects ARCH_HAVE_MATH_H)" |
||||
default y |
||||
select ARCH_HAVE_MATH_H |
Loading…
Reference in new issue