Hi<br><br>I am building Clang/LLVM for PPC440 processor. This is 32 bit processor. It built successfully (llvm, clang 9.0).<br>But compiling simple 2 long double numbers addition it generates __gcc_qadd from libgcc.a. I have GCC 9.2<br>toolchain. But its libgcc.a does not contain __gcc_qadd and others similar functions. Instead GCC handles same<br>situation with __adddf3 call. GCC does have a file ibm-double.c in libgcc but it is not built as part of libgcc.a instead<br>__adddf3 are built.<br>So I found that compiler-rt has these functions. But when builing compiler-rt, it is not supporting ppc32. It only builds<br>for PPC64.<br>So my question is: How to build compiler-rt for PPC32?<br><br>Please help<br><br>Cheers<br>Vikram