[Bug other/56298] wmmintrin.h aborts compilation on the machines without AES
jakub at gcc dot gnu.org
gcc-bugzilla@gcc.gnu.org
Tue Feb 12 13:14:00 GMT 2013
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=56298
Jakub Jelinek <jakub at gcc dot gnu.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |jakub at gcc dot gnu.org
--- Comment #1 from Jakub Jelinek <jakub at gcc dot gnu.org> 2013-02-12 13:13:50 UTC ---
It is not a bug, it is a way all the intrinsics headers are written.
You can use
#pragma GCC push_options
#pragma GCC target ("aes")
#include <wmmintrin.h>
#pragma GCC pop_options
and similar.
More information about the Gcc-bugs
mailing list