From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 57E00383568B; Fri, 22 Jul 2022 04:10:43 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 57E00383568B From: "benh at kernel dot crashing.org" To: glibc-bugs@sourceware.org Subject: [Bug build/29394] New: Possible typo in sysdeps/aarch64/configure{.ac} Date: Fri, 22 Jul 2022 04:10:42 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: glibc X-Bugzilla-Component: build X-Bugzilla-Version: unspecified X-Bugzilla-Keywords: X-Bugzilla-Severity: minor X-Bugzilla-Who: benh at kernel dot crashing.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at sourceware dot org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter cc target_milestone Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://sourceware.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: glibc-bugs@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Glibc-bugs mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Jul 2022 04:10:43 -0000 https://sourceware.org/bugzilla/show_bug.cgi?id=3D29394 Bug ID: 29394 Summary: Possible typo in sysdeps/aarch64/configure{.ac} Product: glibc Version: unspecified Status: UNCONFIRMED Severity: minor Priority: P2 Component: build Assignee: unassigned at sourceware dot org Reporter: benh at kernel dot crashing.org CC: carlos at redhat dot com Target Milestone: --- So I'm not super familiar with those configure macros, but I noticed this in configure.ac" # Check if asm support armv8.2-a+sve AC_CACHE_CHECK(for SVE support in assembler, libc_cv_asm_sve, [dnl cat > conftest.s <<\EOF ptrue p0.b EOF if AC_TRY_COMMAND(${CC-cc} -c -march=3Darmv8.2-a+sve conftest.s 1>&AS_MESSAGE_LOG_FD); then libc_cv_aarch64_sve_asm=3Dyes else libc_cv_aarch64_sve_asm=3Dno fi rm -f conftest*]) if test $libc_cv_aarch64_sve_asm =3D yes; then AC_DEFINE(HAVE_AARCH64_SVE_ASM) fi Note the use of "libc_cv_asm_sve" vs. "libc_cv_aarch64_sve_asm" This doesn't match other tests in the same file and might explain why the result isn't displayed properly when running configure... --=20 You are receiving this mail because: You are on the CC list for the bug.=