From e17cf023d894acc3932505f66fbd9c31ce56793f Mon Sep 17 00:00:00 2001 From: NIIBE Yutaka Date: Mon, 13 Dec 2021 14:20:39 +0900 Subject: build: Detect a system with musl, as a variant of GNU System. * configure.ac: Add *-*-linux-musl. -- Reported-by: Alexander Kanavin Signed-off-by: NIIBE Yutaka --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index 62f2634..35c0324 100644 --- a/configure.ac +++ b/configure.ac @@ -605,7 +605,7 @@ if test x"$gl_use_threads" = xno; then AC_MSG_NOTICE([generated src/lock-obj-pub.native.h for $host]) elif test x$cross_compiling = xyes; then case $host in - *-*-linux-gnu*) + *-*-linux-gnu* | *-*-linux-musl) AC_CHECK_TOOL(OBJDUMP, [objdump]) if test -n "$OBJDUMP"; then lock_obj_h_generated=yes -- cgit v1.2.1