public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug target/100336] New: file trunk/gcc/config/i386/i386-isa.def doesn't get installed ok ?
@ 2021-04-29 15:46 dcb314 at hotmail dot com
  2021-04-30  9:11 ` [Bug target/100336] " jakub at gcc dot gnu.org
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: dcb314 at hotmail dot com @ 2021-04-29 15:46 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100336

            Bug ID: 100336
           Summary: file trunk/gcc/config/i386/i386-isa.def doesn't get
                    installed ok ?
           Product: gcc
           Version: 12.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: target
          Assignee: unassigned at gcc dot gnu.org
          Reporter: dcb314 at hotmail dot com
  Target Milestone: ---

I had a go a couple of days ago of compiling the new Linux kernel-5.12
with x86_64 gcc dated 20210426. I got this error:

/home/dcb/gcc/results.20210426/lib/gcc/x86_64-pc-linux-gnu/12.0.0/plugin/include/config/i386/i386.h:2197:10:
fatal error: i386-isa.def: No such file or directory

I bodged it by copying the relevant file out of the gcc trunk development tree 
into the results directory:

$ cp /home/dcb/gcc/trunk.git/gcc/config/i386/i386-isa.def
/home/dcb/gcc/results.20210429.asan.ubsan/lib/gcc/x86_64-pc-linux-gnu/12.0.0/plugin/include/config/i386/
$

My best guess is that the "make install" should do this copy.

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

* [Bug target/100336] file trunk/gcc/config/i386/i386-isa.def doesn't get installed ok ?
  2021-04-29 15:46 [Bug target/100336] New: file trunk/gcc/config/i386/i386-isa.def doesn't get installed ok ? dcb314 at hotmail dot com
@ 2021-04-30  9:11 ` jakub at gcc dot gnu.org
  2021-05-02  8:28 ` cvs-commit at gcc dot gnu.org
  2021-05-12 13:09 ` jakub at gcc dot gnu.org
  2 siblings, 0 replies; 4+ messages in thread
From: jakub at gcc dot gnu.org @ 2021-04-30  9:11 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100336

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |ASSIGNED
     Ever confirmed|0                           |1
   Last reconfirmed|                            |2021-04-30
           Assignee|unassigned at gcc dot gnu.org      |jakub at gcc dot gnu.org

--- Comment #1 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
Created attachment 50716
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=50716&action=edit
gcc12-pr100336.patch

Fix tested just with make install, but not full bootstrap/regtest.

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

* [Bug target/100336] file trunk/gcc/config/i386/i386-isa.def doesn't get installed ok ?
  2021-04-29 15:46 [Bug target/100336] New: file trunk/gcc/config/i386/i386-isa.def doesn't get installed ok ? dcb314 at hotmail dot com
  2021-04-30  9:11 ` [Bug target/100336] " jakub at gcc dot gnu.org
@ 2021-05-02  8:28 ` cvs-commit at gcc dot gnu.org
  2021-05-12 13:09 ` jakub at gcc dot gnu.org
  2 siblings, 0 replies; 4+ messages in thread
From: cvs-commit at gcc dot gnu.org @ 2021-05-02  8:28 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100336

--- Comment #2 from CVS Commits <cvs-commit at gcc dot gnu.org> ---
The master branch has been updated by Jakub Jelinek <jakub@gcc.gnu.org>:

https://gcc.gnu.org/g:6e1ecc984ef71fc80d0fb7e91ac38af16ccb1943

commit r12-342-g6e1ecc984ef71fc80d0fb7e91ac38af16ccb1943
Author: Jakub Jelinek <jakub@redhat.com>
Date:   Sun May 2 10:28:11 2021 +0200

    i386: Fix up plugin header install on x86 [PR100336]

    The recent addition of i386-isa.def which is included from i386.h results
    in failures to build gcc plugins, the i386.h header is installed, but
    i386-isa.def is not.

    2021-05-02  Jakub Jelinek  <jakub@redhat.com>

            PR target/100336
            * config/i386/t-i386 (TM_H): Add
$(srcdir)/config/i386/i386-isa.def.

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

* [Bug target/100336] file trunk/gcc/config/i386/i386-isa.def doesn't get installed ok ?
  2021-04-29 15:46 [Bug target/100336] New: file trunk/gcc/config/i386/i386-isa.def doesn't get installed ok ? dcb314 at hotmail dot com
  2021-04-30  9:11 ` [Bug target/100336] " jakub at gcc dot gnu.org
  2021-05-02  8:28 ` cvs-commit at gcc dot gnu.org
@ 2021-05-12 13:09 ` jakub at gcc dot gnu.org
  2 siblings, 0 replies; 4+ messages in thread
From: jakub at gcc dot gnu.org @ 2021-05-12 13:09 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100336

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

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

--- Comment #3 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
Fixed.

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

end of thread, other threads:[~2021-05-12 13:09 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-04-29 15:46 [Bug target/100336] New: file trunk/gcc/config/i386/i386-isa.def doesn't get installed ok ? dcb314 at hotmail dot com
2021-04-30  9:11 ` [Bug target/100336] " jakub at gcc dot gnu.org
2021-05-02  8:28 ` cvs-commit at gcc dot gnu.org
2021-05-12 13:09 ` jakub at gcc dot gnu.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).