I'm trying to compile a .so file using an ARM toolchain. However I keep getting this error-
error: Source object has EABI version 0, but target has EABI version 5
I can't change anything in the tool chain as I have to use the one given. I've never seen this error before.
I used this compiler flag -
-Wl,--no-warn-mismatch
But had to take it out as it broke a lot of other stuff.
The compiler flags I'm using are:
-fPIC -O2 -marm -march=armv7-a
Use
as -meabi=5
I'm not going to claim I fully understand it... :-) but it solved the problem.
What I was trying to do that failed:
--target arm-elf
arm-linux-gnueabihf-gcc
version 5.3.1I think that the value is mentioned in the EABI specs say something along about it http://infocenter.arm.com/help/topic/com.arm.doc.ihi0044f/IHI0044F_aaelf.pdf
although I don't know why exactly 0 popped up at all.