From c07a7d999e86e17ad5d4ea09a3fc8e8b1ac259f7 Mon Sep 17 00:00:00 2001 From: =?utf8?q?P=C3=A1draig=20Brady?=
Date: Fri, 15 Mar 2024 11:38:28 +0000 Subject: [PATCH] build: provide a cross-compiling default for 16 bit float checks * configure.ac: Provide a conservative 16 bit float support default when cross-compiling, to avoid configure failing in that case. --- configure.ac | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/configure.ac b/configure.ac index 898ccf5d5f..9cb6ee1494 100644 --- a/configure.ac +++ b/configure.ac @@ -585,6 +585,8 @@ AC_CACHE_VAL([utils_cv_ieee_16_bit_supported],[ utils_cv_ieee_16_bit_supported=yes ],[ utils_cv_ieee_16_bit_supported=no + ],[ + utils_cv_ieee_16_bit_supported=no ])]) AC_MSG_RESULT([$utils_cv_ieee_16_bit_supported]) if test $utils_cv_ieee_16_bit_supported = yes; then @@ -607,6 +609,8 @@ AC_CACHE_VAL([utils_cv_brain_16_bit_supported],[ utils_cv_brain_16_bit_supported=yes ],[ utils_cv_brain_16_bit_supported=no + ],[ + utils_cv_brain_16_bit_supported=no ])]) AC_MSG_RESULT([$utils_cv_brain_16_bit_supported]) if test $utils_cv_brain_16_bit_supported = yes; then -- 2.47.2