Closed mariasfiraiala closed 1 year ago
When building apps with clang for x86, an asm specific symbol, __muldc3, which results in a undefined reference error, at link time.
clang
x86
__muldc3
This PR adds the -ffast-math flag, when clang is used in order to fix this issue.
-ffast-math
@StefanJum I've amended the commit. Regarding adding the dependency on the libmath config, the problem actually resides in the libcomplex part musl, so I've set the dependency accordingly.
libmath
libcomplex
musl
When building apps with
clang
forx86
, an asm specific symbol,__muldc3
, which results in a undefined reference error, at link time.This PR adds the
-ffast-math
flag, whenclang
is used in order to fix this issue.