I need to target armv7-a I dont know how to make it compile for armv7. It is instead using armv5te when the binaries are installed using make install I want to do
./configure --host=arm-eabi --target=arm-eabi --with-arch --with-cpu
I need to target armv7-a I dont know how to make it compile for armv7. It is instead using armv5te when the binaries are installed using make install I want to do
./configure --host=arm-eabi --target=arm-eabi --with-arch --with-cpu
I instead used the ./configure CFLAGS='-mcpu=cortex-a7 -mfpu=neon-vfpv4'
and the binaries are no longer compiled for armv5te. Thanks Everyone