File tree Expand file tree Collapse file tree 2 files changed +11
-0
lines changed Expand file tree Collapse file tree 2 files changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -123,21 +123,29 @@ LIB_SRC_C = $(addprefix lib/,\
123
123
libm/fmodf.c \
124
124
libm/nearbyintf.c \
125
125
libm/ef_sqrt.c \
126
+ libm/erf_lgamma.c \
126
127
libm/kf_rem_pio2.c \
127
128
libm/kf_sin.c \
128
129
libm/kf_cos.c \
129
130
libm/kf_tan.c \
130
131
libm/ef_rem_pio2.c \
132
+ libm/sf_erf.c \
131
133
libm/sf_sin.c \
132
134
libm/sf_cos.c \
133
135
libm/sf_tan.c \
134
136
libm/sf_frexp.c \
135
137
libm/sf_modf.c \
136
138
libm/sf_ldexp.c \
139
+ libm/acoshf.c \
137
140
libm/asinfacosf.c \
141
+ libm/asinhf.c \
138
142
libm/atanf.c \
143
+ libm/atanhf.c \
139
144
libm/atan2f.c \
145
+ libm/log1pf.c \
140
146
libm/roundf.c \
147
+ libm/wf_lgamma.c \
148
+ libm/wf_tgamma.c \
141
149
)
142
150
143
151
SHARED_SRC_C = $(addprefix shared/,\
Original file line number Diff line number Diff line change @@ -186,6 +186,9 @@ extern const struct _mp_obj_module_t mp_module_onewire;
186
186
mp_obj_t pin_irq_handler[16]; \
187
187
byte *uart0_rxbuf; \
188
188
189
+ // We need an implementation of the log2 function which is not a macro
190
+ #define MP_NEED_LOG2 (1)
191
+
189
192
// We need to provide a declaration/definition of alloca()
190
193
#include <alloca.h>
191
194
You can’t perform that action at this time.
0 commit comments