3e512a1df4
Merge upstream commit that fixes build with LLVM on ppc64* (also affects other systems) and add patch which fixes build specifically on FreeBSD (PR currently waiting for acceptance).
25 lines
612 B
C++
25 lines
612 B
C++
--- util/crc32c.cc.orig 2020-12-01 23:49:39 UTC
|
|
+++ util/crc32c.cc
|
|
@@ -463,6 +463,21 @@ static int arch_ppc_probe(void) {
|
|
|
|
return arch_ppc_crc32;
|
|
}
|
|
+#elif __FreeBSD__
|
|
+#include <machine/cpu.h>
|
|
+#include <sys/auxv.h>
|
|
+#include <sys/elf_common.h>
|
|
+static int arch_ppc_probe(void) {
|
|
+ unsigned long cpufeatures;
|
|
+ arch_ppc_crc32 = 0;
|
|
+
|
|
+#if defined(__powerpc64__)
|
|
+ elf_aux_info(AT_HWCAP2, &cpufeatures, sizeof(cpufeatures));
|
|
+ if (cpufeatures & PPC_FEATURE2_HAS_VEC_CRYPTO) arch_ppc_crc32 = 1;
|
|
+#endif /* __powerpc64__ */
|
|
+
|
|
+ return arch_ppc_crc32;
|
|
+}
|
|
#endif // __linux__
|
|
|
|
static bool isAltiVec() {
|