https://bugs.kde.org/show_bug.cgi?id=457712
--- Comment #2 from Christophe Leroy <christophe.le...@csgroup.eu> --- John Reiser suggested a work-around (see below). That doesn't work, I ended up pulling the entire glibc objects and got conflicts with other symbols, I gave up. 2. Possible work-around: Extract the missing functions from libc.a into separate *.o files: __floatsidf.o, __muldf3.o, __ltdf2.o, __fixdfsi.o, etc. Use something like these commands: # See if what you want really is in libc.a nm -gop libc.a | grep -E '__floatsidf|__muldf3|__ltdf2|__fixdfsi' # See the actual components of the libc.a archive ar t libc.a # Extract the files that you want ar x libc.a __floatsidf.o __muldf3.o __ltdf2.o __fixdfsi.o Then add those *.o filenames to the command line for 'ld'. -- You are receiving this mail because: You are watching all bug changes.