1# Triggered by --with-libf7=math or --with-libf7=math-symbols
2#
3# We provide weak double wrappers for functions specified in math.h,
4# but with __ prepended to the symbol name used for the double function.
5# For example we provide double __sin (double) but neither sin nor sinl.
6# To get weak symbols according to math.h, t-libf7-math-symbols has to
7# be used which is triggered by --with-libf7=math-symbols.
8
9WITH_LIBF7_MATH_FUNCTIONS = 1
10
11# __sin, ...
12F7_ASM_WRAPS_m_dd  += $(m_dd)
13
14# __pow, __fmin, ...
15F7_ASM_WRAPS_m_ddd += $(m_ddd)
16
17# __ldexp, ...
18F7_ASM_WRAPS_m_ddx += $(m_ddx)
19
20# __lrint, ...
21F7_ASM_WRAPS_m_xd += $(m_xd)
22