aboutsummaryrefslogtreecommitdiff
path: root/ports/qemu-arm
diff options
context:
space:
mode:
authorZoltán Vörös2020-03-24 08:11:36 +0100
committerDamien George2020-03-25 01:22:00 +1100
commitc5cc64175be32cb1e4f3f1a249667bc9f5a12613 (patch)
tree717edaf9a362860f4f3131014b2e938ca97edafd /ports/qemu-arm
parentbf4fb162500fd92937f81d028d7604b3fcaac750 (diff)
ports: Add lib/libm/roundf.c to bare-metal Makefile's.
This function is not used by the core but having it as part of the build allows it to be used by user C modules, or board extensions. The linker won't include it in the final firmware if it remains unused.
Diffstat (limited to 'ports/qemu-arm')
-rw-r--r--ports/qemu-arm/Makefile1
1 files changed, 1 insertions, 0 deletions
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 \
)