"Sorry, the MIPS1 architecture is not supported" "please set '-march=' to your architecture (e.g., -march=mips32)"
-
When I used Loongson (mipsel) machine to compile here, the following errors would appear:
@../../include/QtCore/../../src/corelib/arch/qatomic_mips.h:106:3: error:#error "Sorry, the MIPS1 architecture is not supported"
@# error "Sorry, the MIPS1 architecture is not supported"
@^
@../../include/QtCore/../../src/corelib/arch/qatomic_mips.h:107:3: error:#error "please set '-march=' to your architecture (e.g., -march=mips32)"
@# error "please set '-march=' to your architecture (e.g., -march=mips32)"
I tried using “./configure -march=mips32” to solve it, but configure doesn’t support the parameter “-march=mips32”.
I also tried other parameters such as “-march=mips64” and “-march=mipsel”, but all of them didn’t work. Besides, I can’t find the related introductions in the official documents. What need I do to solve it, please?