If the necessary header files are missing, then fio will bomb out when building on arm64. So disable the hardware acceleration option in that case, since it's only performance improvement and not a functional regression to turn it off. Signed-off-by: Theodore Ts'o <tytso@xxxxxxx> --- configure | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/configure b/configure index d0c2173f..fa6f8acb 100755 --- a/configure +++ b/configure @@ -1807,6 +1807,10 @@ echo "bool $have_bool" march_armv8_a_crc_crypto="no" if test "$cpu" = "arm64" ; then cat > $TMPC <<EOF +#include <sys/auxv.h> +#include <arm_acle.h> +#include <arm_neon.h> + int main(void) { return 0; -- 2.11.0.rc0.7.gbe5a750 -- To unsubscribe from this list: send the line "unsubscribe fio" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html