diff options
author | Damien George <damien.p.george@gmail.com> | 2018-09-20 16:48:54 +1000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2018-09-20 16:51:20 +1000 |
commit | 56f275c0a265d51e9ce758331f0ff8e33e5be820 (patch) | |
tree | 22c28282f361e4b0c41040800bc5b64442c6499b | |
parent | 57a73973ad0b130ef26cee106b1800af19612404 (diff) |
stm32/Makefile: Include copysign.c in double precision float builds.
This is required for DEBUG=1 builds when MICROPY_FLOAT_IMPL=double.
Thanks to Andrew Leech.
-rw-r--r-- | ports/stm32/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ports/stm32/Makefile b/ports/stm32/Makefile index 677006b92..51438b0b1 100644 --- a/ports/stm32/Makefile +++ b/ports/stm32/Makefile @@ -136,6 +136,7 @@ SRC_LIBM = $(addprefix lib/libm_dbl/,\ ceil.c \ cos.c \ cosh.c \ + copysign.c \ erf.c \ exp.c \ expm1.c \ |