Skip to content

Commit be869b6

Browse files
authored
dev: test with BSD, GNU math fucntions (#7)
1 parent 6ea3e06 commit be869b6

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

config.mak.def

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -75,20 +75,21 @@ C99_SRC+=isless
7575
# TODO: isgreater isgreaterequal islessequal islessgreater isunordered
7676
# -- [C23]
7777
C23_SRC:=exp10 exp10f exp10l
78+
C23_SRC:=pow10 pow10f pow10l
7879
# -- [BSD]
79-
BSD_SRC:=drem dremf
80+
# BSD_SRC:=drem dremf
8081
BSD_SRC+=j0 j0f j1 j1f jn jnf
8182
BSD_SRC+=lgamma_r lgammaf_r lgammal_r
82-
BSD_SRC+=scalb scalbf
83+
# BSD_SRC+=scalb scalbf
8384
BSD_SRC+=y0 y0f y1 y1f yn ynf
8485
# -- [GNU]
85-
GNU_SRC:=pow10 pow10f pow10l sincos sincosf sincosl
86+
GNU_SRC:=sincos sincosf sincosl
8687

8788
# Collect all c src files
8889
SRCS:=$(C99_SRC:%=src/math/%.c)
8990
# SRCS+=$(C23_SRC:%=src/math/%.c)
90-
# SRCS+=$(BSD_SRC:%=src/math/%.c)
91-
# SRCS+=$(GNU_SRC:%=src/math/%.c)
91+
SRCS+=$(BSD_SRC:%=src/math/%.c)
92+
SRCS+=$(GNU_SRC:%=src/math/%.c)
9293

9394
SRCS+=$(wildcard src/api/*.c)
9495
SRCS+=$(wildcard src/common/*.c)

0 commit comments

Comments
 (0)