]> granicus.if.org Git - postgresql/commit
Try to fix the CRC-32C autoconf magic for icc compiler.
authorHeikki Linnakangas <heikki.linnakangas@iki.fi>
Tue, 14 Apr 2015 16:56:03 +0000 (19:56 +0300)
committerHeikki Linnakangas <heikki.linnakangas@iki.fi>
Tue, 14 Apr 2015 16:57:19 +0000 (19:57 +0300)
commitb4eb2d168d2c426978a02de8b9b6ccdb85e1b442
treeeab102e54e7b8f104ba8236187af152f55b792a9
parent0a52fafce42e47d151d1108a44b25152a908c732
Try to fix the CRC-32C autoconf magic for icc compiler.

On gcc and clang, the _mm_crc32_u8 and _mm_crc32_u64 intrinsics are not
defined at all, when not building with -msse4.2. But on icc, they are.
So we cannot assume that if those intrinsics are defined, we can always use
them safely, we might still need the runtime check.

To fix, check if the __SSE_4_2__ preprocessor symbol is defined. That's
supposed to be defined only when the compiler is targeting a processor that
has SSE 4.2 support.

Per buildfarm members fulmar and okapi.
configure
configure.in