Hi,
I am using a tool chain and compile the source code for cortexA8. The tool chain and the enabled switches are given below
CPP=arm-none-linux-gnueabi-gcc
SW=-march=armv7-a -mtune=cortex-a8 -mfpu=neon -mfloat-abi=softfp -flax-vector-conversions
I have following doubts regarding this tool chain!
How can i disable the neon vectorization of the given C only source ? but i need an executable for beegle board, because the beegle board is my target
If i didn't give any neon intrinsic or neon assembly then the compiler will generate a default neon code for the given C to the target beegle using the above tool chain ?
my aim is to check the performence of C code without any neon or vectorization Vs Neon enabled C code (C Neon Intrinsics + Neon Assembly) for an image viewer application
Rgds
Dave