public inbox for glibc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug build/31782] New: Test build failure with recent GCC trunk (x86/tst-cpu-features-supports.c:69:3: error: parameter to builtin not valid: avx5124fmaps)
@ 2024-05-21 18:04 sam at gentoo dot org
  2024-05-21 18:04 ` [Bug build/31782] " sam at gentoo dot org
                   ` (7 more replies)
  0 siblings, 8 replies; 9+ messages in thread
From: sam at gentoo dot org @ 2024-05-21 18:04 UTC (permalink / raw)
  To: glibc-bugs

https://sourceware.org/bugzilla/show_bug.cgi?id=31782

            Bug ID: 31782
           Summary: Test build failure with recent GCC trunk
                    (x86/tst-cpu-features-supports.c:69:3: error:
                    parameter to builtin not valid: avx5124fmaps)
           Product: glibc
           Version: unspecified
            Status: NEW
          Severity: normal
          Priority: P2
         Component: build
          Assignee: unassigned at sourceware dot org
          Reporter: sam at gentoo dot org
                CC: carlos at redhat dot com
  Target Milestone: ---

This broke with a recent commit in GCC trunk:

commit e1a7e2c54d52d0ba374735e285b617af44841ace
Author: Haochen Jiang <haochen.jiang@intel.com>
Date:   Mon May 20 10:43:44 2024 +0800

    i386: Remove Xeon Phi ISA support

--

```
[...]
../sysdeps/x86/tst-cpu-features-supports.c: In function ‘do_test’:
../sysdeps/x86/tst-cpu-features-supports.c:69:3: error: parameter to builtin
not valid: avx5124fmaps
   69 |   fails += CHECK_FEATURE_ACTIVE (avx5124fmaps, AVX512_4FMAPS);
      |   ^~~~~
../sysdeps/x86/tst-cpu-features-supports.c:70:3: error: parameter to builtin
not valid: avx5124vnniw
   70 |   fails += CHECK_FEATURE_ACTIVE (avx5124vnniw, AVX512_4VNNIW);
      |   ^~~~~
../sysdeps/x86/tst-cpu-features-supports.c:95:3: error: parameter to builtin
not valid: avx512er
   95 |   fails += CHECK_FEATURE_ACTIVE (avx512er, AVX512ER);
      |   ^~~~~
../sysdeps/x86/tst-cpu-features-supports.c:102:3: error: parameter to builtin
not valid: avx512pf
  102 |   fails += CHECK_FEATURE_ACTIVE (avx512pf, AVX512PF);
      |   ^~~~~
../sysdeps/x86/tst-cpu-features-supports.c:151:3: error: parameter to builtin
not valid: prefetchwt1
  151 |   fails += CHECK_FEATURE_ACTIVE (prefetchwt1, PREFETCHWT1);
      |   ^~~~~
```

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 9+ messages in thread

* [Bug build/31782] Test build failure with recent GCC trunk (x86/tst-cpu-features-supports.c:69:3: error: parameter to builtin not valid: avx5124fmaps)
  2024-05-21 18:04 [Bug build/31782] New: Test build failure with recent GCC trunk (x86/tst-cpu-features-supports.c:69:3: error: parameter to builtin not valid: avx5124fmaps) sam at gentoo dot org
@ 2024-05-21 18:04 ` sam at gentoo dot org
  2024-05-21 21:00 ` hjl.tools at gmail dot com
                   ` (6 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: sam at gentoo dot org @ 2024-05-21 18:04 UTC (permalink / raw)
  To: glibc-bugs

https://sourceware.org/bugzilla/show_bug.cgi?id=31782

Sam James <sam at gentoo dot org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |haochen.jiang at intel dot com

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 9+ messages in thread

* [Bug build/31782] Test build failure with recent GCC trunk (x86/tst-cpu-features-supports.c:69:3: error: parameter to builtin not valid: avx5124fmaps)
  2024-05-21 18:04 [Bug build/31782] New: Test build failure with recent GCC trunk (x86/tst-cpu-features-supports.c:69:3: error: parameter to builtin not valid: avx5124fmaps) sam at gentoo dot org
  2024-05-21 18:04 ` [Bug build/31782] " sam at gentoo dot org
@ 2024-05-21 21:00 ` hjl.tools at gmail dot com
  2024-05-22  2:13 ` haochen.jiang at intel dot com
                   ` (5 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: hjl.tools at gmail dot com @ 2024-05-21 21:00 UTC (permalink / raw)
  To: glibc-bugs

https://sourceware.org/bugzilla/show_bug.cgi?id=31782

H.J. Lu <hjl.tools at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |hjl.tools at gmail dot com,
                   |                            |skpgkp2 at gmail dot com

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 9+ messages in thread

* [Bug build/31782] Test build failure with recent GCC trunk (x86/tst-cpu-features-supports.c:69:3: error: parameter to builtin not valid: avx5124fmaps)
  2024-05-21 18:04 [Bug build/31782] New: Test build failure with recent GCC trunk (x86/tst-cpu-features-supports.c:69:3: error: parameter to builtin not valid: avx5124fmaps) sam at gentoo dot org
  2024-05-21 18:04 ` [Bug build/31782] " sam at gentoo dot org
  2024-05-21 21:00 ` hjl.tools at gmail dot com
@ 2024-05-22  2:13 ` haochen.jiang at intel dot com
  2024-05-27 19:30 ` cvs-commit at gcc dot gnu.org
                   ` (4 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: haochen.jiang at intel dot com @ 2024-05-22  2:13 UTC (permalink / raw)
  To: glibc-bugs

https://sourceware.org/bugzilla/show_bug.cgi?id=31782

--- Comment #1 from Haochen Jiang <haochen.jiang at intel dot com> ---
Those options have been removed in GCC15. Suppose the corresponding test should
also be removed in glibc.

Let me have a look how many tests are affected.

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 9+ messages in thread

* [Bug build/31782] Test build failure with recent GCC trunk (x86/tst-cpu-features-supports.c:69:3: error: parameter to builtin not valid: avx5124fmaps)
  2024-05-21 18:04 [Bug build/31782] New: Test build failure with recent GCC trunk (x86/tst-cpu-features-supports.c:69:3: error: parameter to builtin not valid: avx5124fmaps) sam at gentoo dot org
                   ` (2 preceding siblings ...)
  2024-05-22  2:13 ` haochen.jiang at intel dot com
@ 2024-05-27 19:30 ` cvs-commit at gcc dot gnu.org
  2024-05-28 18:43 ` cvs-commit at gcc dot gnu.org
                   ` (3 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: cvs-commit at gcc dot gnu.org @ 2024-05-27 19:30 UTC (permalink / raw)
  To: glibc-bugs

https://sourceware.org/bugzilla/show_bug.cgi?id=31782

--- Comment #2 from Sourceware Commits <cvs-commit at gcc dot gnu.org> ---
The master branch has been updated by Sunil Pandey <skpgkp2@sourceware.org>:

https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=1b713c9a5349ef3cd1a8ccf9de017c7865713c67

commit 1b713c9a5349ef3cd1a8ccf9de017c7865713c67
Author: Sunil K Pandey <skpgkp2@gmail.com>
Date:   Mon May 27 10:08:18 2024 -0700

    i386: Disable Intel Xeon Phi tests for GCC 15 and above (BZ 31782)

    This patch disables Intel Xeon Phi tests for GCC 15 and above.

    GCC 15 removed Intel Xeon Phi ISA support.
    commit e1a7e2c54d52d0ba374735e285b617af44841ace
    Author: Haochen Jiang <haochen.jiang@intel.com>
    Date:   Mon May 20 10:43:44 2024 +0800

        i386: Remove Xeon Phi ISA support

    Fixes BZ 31782.

    Reviewed-by: H.J. Lu <hjl.tools@gmail.com>

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 9+ messages in thread

* [Bug build/31782] Test build failure with recent GCC trunk (x86/tst-cpu-features-supports.c:69:3: error: parameter to builtin not valid: avx5124fmaps)
  2024-05-21 18:04 [Bug build/31782] New: Test build failure with recent GCC trunk (x86/tst-cpu-features-supports.c:69:3: error: parameter to builtin not valid: avx5124fmaps) sam at gentoo dot org
                   ` (3 preceding siblings ...)
  2024-05-27 19:30 ` cvs-commit at gcc dot gnu.org
@ 2024-05-28 18:43 ` cvs-commit at gcc dot gnu.org
  2024-05-28 19:54 ` cvs-commit at gcc dot gnu.org
                   ` (2 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: cvs-commit at gcc dot gnu.org @ 2024-05-28 18:43 UTC (permalink / raw)
  To: glibc-bugs

https://sourceware.org/bugzilla/show_bug.cgi?id=31782

--- Comment #3 from Sourceware Commits <cvs-commit at gcc dot gnu.org> ---
The release/2.39/master branch has been updated by Sunil Pandey
<skpgkp2@sourceware.org>:

https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=c9d8534406ab69b9bc1fd3fdfb9e88c9580d3f24

commit c9d8534406ab69b9bc1fd3fdfb9e88c9580d3f24
Author: Sunil K Pandey <skpgkp2@gmail.com>
Date:   Mon May 27 10:08:18 2024 -0700

    i386: Disable Intel Xeon Phi tests for GCC 15 and above (BZ 31782)

    This patch disables Intel Xeon Phi tests for GCC 15 and above.

    GCC 15 removed Intel Xeon Phi ISA support.
    commit e1a7e2c54d52d0ba374735e285b617af44841ace
    Author: Haochen Jiang <haochen.jiang@intel.com>
    Date:   Mon May 20 10:43:44 2024 +0800

        i386: Remove Xeon Phi ISA support

    Fixes BZ 31782.

    Reviewed-by: H.J. Lu <hjl.tools@gmail.com>
    (cherry picked from commit 1b713c9a5349ef3cd1a8ccf9de017c7865713c67)

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 9+ messages in thread

* [Bug build/31782] Test build failure with recent GCC trunk (x86/tst-cpu-features-supports.c:69:3: error: parameter to builtin not valid: avx5124fmaps)
  2024-05-21 18:04 [Bug build/31782] New: Test build failure with recent GCC trunk (x86/tst-cpu-features-supports.c:69:3: error: parameter to builtin not valid: avx5124fmaps) sam at gentoo dot org
                   ` (4 preceding siblings ...)
  2024-05-28 18:43 ` cvs-commit at gcc dot gnu.org
@ 2024-05-28 19:54 ` cvs-commit at gcc dot gnu.org
  2024-06-15 14:16 ` dilfridge at gentoo dot org
  2024-06-18  8:54 ` sam at gentoo dot org
  7 siblings, 0 replies; 9+ messages in thread
From: cvs-commit at gcc dot gnu.org @ 2024-05-28 19:54 UTC (permalink / raw)
  To: glibc-bugs

https://sourceware.org/bugzilla/show_bug.cgi?id=31782

--- Comment #4 from Sourceware Commits <cvs-commit at gcc dot gnu.org> ---
The release/2.38/master branch has been updated by Sunil Pandey
<skpgkp2@sourceware.org>:

https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=697ab62d1176180bea49094130ad0af2b108874d

commit 697ab62d1176180bea49094130ad0af2b108874d
Author: Sunil K Pandey <skpgkp2@gmail.com>
Date:   Mon May 27 10:08:18 2024 -0700

    i386: Disable Intel Xeon Phi tests for GCC 15 and above (BZ 31782)

    This patch disables Intel Xeon Phi tests for GCC 15 and above.

    GCC 15 removed Intel Xeon Phi ISA support.
    commit e1a7e2c54d52d0ba374735e285b617af44841ace
    Author: Haochen Jiang <haochen.jiang@intel.com>
    Date:   Mon May 20 10:43:44 2024 +0800

        i386: Remove Xeon Phi ISA support

    Fixes BZ 31782.

    Reviewed-by: H.J. Lu <hjl.tools@gmail.com>
    (cherry picked from commit 1b713c9a5349ef3cd1a8ccf9de017c7865713c67)

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 9+ messages in thread

* [Bug build/31782] Test build failure with recent GCC trunk (x86/tst-cpu-features-supports.c:69:3: error: parameter to builtin not valid: avx5124fmaps)
  2024-05-21 18:04 [Bug build/31782] New: Test build failure with recent GCC trunk (x86/tst-cpu-features-supports.c:69:3: error: parameter to builtin not valid: avx5124fmaps) sam at gentoo dot org
                   ` (5 preceding siblings ...)
  2024-05-28 19:54 ` cvs-commit at gcc dot gnu.org
@ 2024-06-15 14:16 ` dilfridge at gentoo dot org
  2024-06-18  8:54 ` sam at gentoo dot org
  7 siblings, 0 replies; 9+ messages in thread
From: dilfridge at gentoo dot org @ 2024-06-15 14:16 UTC (permalink / raw)
  To: glibc-bugs

https://sourceware.org/bugzilla/show_bug.cgi?id=31782

Andreas K. Huettel <dilfridge at gentoo dot org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |dilfridge at gentoo dot org
   Target Milestone|---                         |2.40

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 9+ messages in thread

* [Bug build/31782] Test build failure with recent GCC trunk (x86/tst-cpu-features-supports.c:69:3: error: parameter to builtin not valid: avx5124fmaps)
  2024-05-21 18:04 [Bug build/31782] New: Test build failure with recent GCC trunk (x86/tst-cpu-features-supports.c:69:3: error: parameter to builtin not valid: avx5124fmaps) sam at gentoo dot org
                   ` (6 preceding siblings ...)
  2024-06-15 14:16 ` dilfridge at gentoo dot org
@ 2024-06-18  8:54 ` sam at gentoo dot org
  7 siblings, 0 replies; 9+ messages in thread
From: sam at gentoo dot org @ 2024-06-18  8:54 UTC (permalink / raw)
  To: glibc-bugs

https://sourceware.org/bugzilla/show_bug.cgi?id=31782

Sam James <sam at gentoo dot org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         Resolution|---                         |FIXED
             Status|NEW                         |RESOLVED

--- Comment #5 from Sam James <sam at gentoo dot org> ---
.

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2024-06-18  8:54 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-05-21 18:04 [Bug build/31782] New: Test build failure with recent GCC trunk (x86/tst-cpu-features-supports.c:69:3: error: parameter to builtin not valid: avx5124fmaps) sam at gentoo dot org
2024-05-21 18:04 ` [Bug build/31782] " sam at gentoo dot org
2024-05-21 21:00 ` hjl.tools at gmail dot com
2024-05-22  2:13 ` haochen.jiang at intel dot com
2024-05-27 19:30 ` cvs-commit at gcc dot gnu.org
2024-05-28 18:43 ` cvs-commit at gcc dot gnu.org
2024-05-28 19:54 ` cvs-commit at gcc dot gnu.org
2024-06-15 14:16 ` dilfridge at gentoo dot org
2024-06-18  8:54 ` sam at gentoo dot org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).