In eclipse with MinGW I am trying to compile c code having some Intel Intrinsic Instruction (sse2 sse3). I have given compiler option -march=native -msse2 -msse3 -mssse3 -msse4.1 but I am getting an error
Type '__m128i' could not be resolved.
still I am able to build application but it crashing at runtime while executing the Intel Intrinsic Instruction. So I have go through header files of Intel Intrinsic Instruction it showing "SSE3 instruction set not enabled".
Please Help me to get out of this.