aboutsummaryrefslogtreecommitdiff
path: root/esp8266/Makefile
diff options
context:
space:
mode:
authorDamien George2015-12-18 21:07:58 +0000
committerPaul Sokolovsky2016-03-02 22:43:10 +0200
commit6d0629bddcac1fede980ba24a1285ab670bca640 (patch)
tree84b1ceb152e5003786c7d5ba0ad194b67536cdae /esp8266/Makefile
parentecd1272d16ff3500557177d46cc7d46edd7d3094 (diff)
esp8266: Enable float support, using 30-bit stuffed floats.
No complex numbers though.
Diffstat (limited to 'esp8266/Makefile')
-rw-r--r--esp8266/Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/esp8266/Makefile b/esp8266/Makefile
index b836248c6..f6681eefa 100644
--- a/esp8266/Makefile
+++ b/esp8266/Makefile
@@ -72,6 +72,10 @@ STM_SRC_C = $(addprefix stmhal/,\
LIB_SRC_C = $(addprefix lib/,\
libc/string0.c \
+ libm/math.c \
+ libm/fmodf.c \
+ libm/roundf.c \
+ libm/ef_sqrt.c \
mp-readline/readline.c \
netutils/netutils.c \
timeutils/timeutils.c \