https://bugs.winehq.org/show_bug.cgi?id=37809
Bug ID: 37809 Summary: C runtime dlls can't link with uclibc (bessel functions missing) Product: Wine Version: 1.7.33 Hardware: x86 OS: Linux Status: NEW Severity: minor Priority: P2 Component: msvcrt Assignee: wine-bugs@winehq.org Reporter: nerv@dawncrow.de Distribution: ---
math.c can be build, but linking fails.
building e.g.:
math.c: In function 'MSVCRT__j0': math.c:1267:3: warning: implicit declaration of function 'j0' [-Wimplicit-function-declaration] return j0(num); ^ math.c:1267:10: warning: incompatible implicit declaration of built-in function 'j0' [enabled by default] return j0(num); ^
linking:
math.o: In function `MSVCRT__j0': math.c:(.text+0x1901): undefined reference to `j0' math.o: In function `MSVCRT__j1': math.c:(.text+0x1931): undefined reference to `j1' math.o: In function `MSVCRT__jn': math.c:(.text+0x1963): undefined reference to `jn' math.o: In function `MSVCRT__y0': math.c:(.text+0x19b6): undefined reference to `y0' math.o: In function `MSVCRT__y1': math.c:(.text+0x1a3d): undefined reference to `y1' math.o: In function `MSVCRT__yn': math.c:(.text+0x1ac8): undefined reference to `yn'
We use the bessel functions unconditionally.