Is there any way to build libgcc without building gcc compiler?
I have tried to run configure script of libgcc but it says ../../gcc/libgcc.mvars is missing.
My basic need is to build libgcc for multiple platforms with multiple configurations for various versions of libgcc.
-m32
is supported. Any idea how to go about and build thelibgcc
for the-m32
target? Simply addingCFLAGS=-m32
to the make invocation would end up overwriting the original (-m64
) libraries. – Abscond