summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ports/esp8266/Makefile1
-rw-r--r--ports/nrf/Makefile1
-rw-r--r--ports/qemu-arm/Makefile1
-rw-r--r--ports/stm32/Makefile1
4 files changed, 4 insertions, 0 deletions
diff --git a/ports/esp8266/Makefile b/ports/esp8266/Makefile
index 9a7476c10..989e8a62f 100644
--- a/ports/esp8266/Makefile
+++ b/ports/esp8266/Makefile
@@ -138,6 +138,7 @@ LIB_SRC_C = $(addprefix lib/,\
libm/asinfacosf.c \
libm/atanf.c \
libm/atan2f.c \
+ libm/roundf.c \
mp-readline/readline.c \
netutils/netutils.c \
timeutils/timeutils.c \
diff --git a/ports/nrf/Makefile b/ports/nrf/Makefile
index 04e3b7fee..d898559a1 100644
--- a/ports/nrf/Makefile
+++ b/ports/nrf/Makefile
@@ -150,6 +150,7 @@ SRC_LIB += $(addprefix lib/,\
libm/asinfacosf.c \
libm/atanf.c \
libm/atan2f.c \
+ libm/roundf.c \
)
endif
diff --git a/ports/qemu-arm/Makefile b/ports/qemu-arm/Makefile
index cb7dcb021..b31284c59 100644
--- a/ports/qemu-arm/Makefile
+++ b/ports/qemu-arm/Makefile
@@ -90,6 +90,7 @@ LIB_SRC_C += $(addprefix lib/,\
libm/asinfacosf.c \
libm/atanf.c \
libm/atan2f.c \
+ libm/roundf.c \
utils/sys_stdio_mphal.c \
)
diff --git a/ports/stm32/Makefile b/ports/stm32/Makefile
index 2dc740561..31d75f3fb 100644
--- a/ports/stm32/Makefile
+++ b/ports/stm32/Makefile
@@ -214,6 +214,7 @@ SRC_LIBM = $(addprefix lib/libm/,\
kf_tan.c \
log1pf.c \
nearbyintf.c \
+ roundf.c \
sf_cos.c \
sf_erf.c \
sf_frexp.c \