[issue21668] The select and time modules uses libm functions without linking against it

2014-06-05 Thread Fredrik Fornwall
Fredrik Fornwall added the comment: Note: This causes problems at least when running on android, where the system is unable to find the symbols when loading the modules at runtime. -- ___ Python tracker <http://bugs.python.org/issue21

[issue21668] The select and time modules uses libm functions without linking against it

2014-06-05 Thread Fredrik Fornwall
New submission from Fredrik Fornwall: The select and time modules use functions from libm, but do not link against it. * selectmodule.c calls ceil(3) in pyepoll_poll() * timemodule.c calls fmod(3) and floor(3) in floatsleep() -- components: Build, Cross-Build files