You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm getting the following error while building grpc which depends on abseil. Just wondering whether anyone can point me to the right direction on how to get past this part:
[ 25%] Building CXX object third_party/abseil-cpp/absl/strings/CMakeFiles/str_format_internal.dir/internal/str_format/bind.cc.o
In file included from /home/edyu/ws/zig/grpc/third_party/abseil-cpp/absl/crc/internal/crc_x86_arm_combined.cc:27:
/home/edyu/ws/zig/grpc/third_party/abseil-cpp/absl/crc/internal/crc32_x86_arm_combined_simd.h:135:32: error: always_inline function '_mm_crc32_u64' requires target feature 'crc32', but would be inlined into function 'CRC32_u64' that is compiled without support for 'crc32'
return static_cast<uint32_t>(_mm_crc32_u64(crc, v));
^
/home/edyu/ws/zig/grpc/third_party/abseil-cpp/absl/crc/internal/crc32_x86_arm_combined_simd.h:131:10: error: always_inline function '_mm_crc32_u32' requires target feature 'crc32', but would be inlined into function 'CRC32_u32' that is compiled without support for 'crc32'
return _mm_crc32_u32(crc, v);
^
/home/edyu/ws/zig/grpc/third_party/abseil-cpp/absl/crc/internal/crc32_x86_arm_combined_simd.h:127:10: error: always_inline function '_mm_crc32_u16' requires target feature 'crc32', but would be inlined into function 'CRC32_u16' that is compiled without support for 'crc32'
return _mm_crc32_u16(crc, v);
^
/home/edyu/ws/zig/grpc/third_party/abseil-cpp/absl/crc/internal/crc32_x86_arm_combined_simd.h:123:10: error: always_inline function '_mm_crc32_u8' requires target feature 'crc32', but would be inlined into function 'CRC32_u8' that is compiled without support for 'crc32'
return _mm_crc32_u8(crc, v);
^
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
I'm getting the following error while building grpc which depends on abseil. Just wondering whether anyone can point me to the right direction on how to get past this part:
Beta Was this translation helpful? Give feedback.
All reactions