@@ -95,7 +95,7 @@ def create_libc(libname):
95
95
blacklist = set (
96
96
['ipc' , 'passwd' , 'thread' , 'signal' , 'sched' , 'ipc' , 'time' , 'linux' , 'aio' , 'exit' , 'legacy' , 'mq' , 'process' , 'search' , 'setjmp' , 'env' , 'ldso' , 'conf' ] + # musl modules
97
97
['memcpy.c' , 'memset.c' , 'memmove.c' , 'getaddrinfo.c' , 'getnameinfo.c' , 'inet_addr.c' , 'res_query.c' , 'gai_strerror.c' , 'proto.c' , 'gethostbyaddr.c' , 'gethostbyaddr_r.c' , 'gethostbyname.c' , 'gethostbyname2_r.c' , 'gethostbyname_r.c' , 'gethostbyname2.c' , 'usleep.c' , 'alarm.c' , 'syscall.c' ] + # individual files
98
- ['abs.c' , 'cos.c' , 'cosf.c' , 'cosl.c' , 'sin.c' , 'sinf.c' , 'sinl.c' , 'tan.c' , 'tanf.c' , 'tanl.c' , 'acos.c' , 'acosf.c' , 'acosl.c' , 'asin.c' , 'asinf.c' , 'asinl.c' , 'atan.c' , 'atanf.c' , 'atanl.c' , 'atan2.c' , 'atan2f.c' , 'atan2l.c' , 'exp.c' , 'expf.c' , 'expl.c' , 'log.c' , 'logf.c' , 'logl.c' , 'sqrt.c' , 'sqrtf.c' , 'sqrtl.c' , 'fabs.c' , 'fabsf.c' , 'fabsl.c' , 'ceil.c' , 'ceilf.c' , 'ceill.c' , 'floor.c' , 'floorf.c' , 'floorl.c' , 'pow.c' , 'powf.c' , 'powl.c' ] # individual math files
98
+ ['abs.c' , 'cos.c' , 'cosf.c' , 'cosl.c' , 'sin.c' , 'sinf.c' , 'sinl.c' , 'tan.c' , 'tanf.c' , 'tanl.c' , 'acos.c' , 'acosf.c' , 'acosl.c' , 'asin.c' , 'asinf.c' , 'asinl.c' , 'atan.c' , 'atanf.c' , 'atanl.c' , 'atan2.c' , 'atan2f.c' , 'atan2l.c' , 'exp.c' , 'expf.c' , 'expl.c' , 'log.c' , 'logf.c' , 'logl.c' , 'sqrt.c' , 'sqrtf.c' , 'sqrtl.c' , 'fabs.c' , 'fabsf.c' , 'fabsl.c' , 'ceil.c' , 'ceilf.c' , 'ceill.c' , 'floor.c' , 'floorf.c' , 'floorl.c' , 'pow.c' , 'powf.c' , 'powl.c' , 'round.c' , 'roundf.c' ] # individual math files
99
99
)
100
100
# TODO: consider using more math code from musl, doing so makes box2d faster
101
101
for dirpath , dirnames , filenames in os .walk (musl_srcdir ):
0 commit comments