Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!

Bug 873136

Summary: sys-firmware/seabios-1.16.0 fails to compile: FileNotFoundError: [Errno 2] No such file or directory: acpi-dsdt.dsl.i.orig
Product: Gentoo Linux Reporter: Agostino Sarubbo <ago>
Component: Current packagesAssignee: Matthias Maier <tamiko>
Status: CONFIRMED ---    
Severity: normal CC: ajak, virtualization
Priority: Normal    
Version: unspecified   
Hardware: All   
OS: Linux   
Whiteboard:
Package list:
Runtime testing required: ---
Bug Depends on:    
Bug Blocks: 877673    
Attachments: build.log

Description Agostino Sarubbo gentoo-dev 2022-09-27 06:41:05 UTC
https://blogs.gentoo.org/ago/2020/07/04/gentoo-tinderbox/

Issue: sys-firmware/seabios-1.16.0 fails to compile.
Discovered on: amd64 (internal ref: ci)
Comment 1 Agostino Sarubbo gentoo-dev 2022-09-27 06:41:07 UTC
Created attachment 814312 [details]
build.log

build log and emerge --info
Comment 2 Agostino Sarubbo gentoo-dev 2022-09-27 06:41:08 UTC
Error(s) that match a know pattern in addition to what has been reported in the summary:


FileNotFoundError: [Errno 2] No such file or directory: 'out/src/fw/acpi-dsdt.dsl.i.orig'
FileNotFoundError: [Errno 2] No such file or directory: 'out/src/fw/ssdt-misc.dsl.i.orig'
FileNotFoundError: [Errno 2] No such file or directory: 'out/src/fw/ssdt-pcihp.dsl.i.orig'
FileNotFoundError: [Errno 2] No such file or directory: 'out/src/fw/ssdt-proc.dsl.i.orig'
Comment 3 John Helmert III archtester Gentoo Infrastructure gentoo-dev Security 2022-09-27 17:54:51 UTC
The issue is that CPP="gcc- E":

x86_64-pc-linux-gnu-gcc -E -P -MD -MT src/fw/acpi-dsdt.hex src/fw/acpi-dsdt.dsl -o out/src/fw/acpi-dsdt.dsl.i.orig
  Compiling IASL src/fw/ssdt-proc.hex
x86_64-pc-linux-gnu-gcc: warning: src/fw/acpi-dsdt.dsl: linker input file unused because linking not done
python ./scripts/acpi_extract_preprocess.py out/src/fw/acpi-dsdt.dsl.i.orig > out/src/fw/acpi-dsdt.dsl.i
x86_64-pc-linux-gnu-gcc -E -P -MD -MT src/fw/ssdt-proc.hex src/fw/ssdt-proc.dsl -o out/src/fw/ssdt-proc.dsl.i.orig
  Compiling IASL src/fw/ssdt-pcihp.hex
x86_64-pc-linux-gnu-gcc: warning: src/fw/ssdt-proc.dsl: linker input file unused because linking not done

.. and so on. I'm not sure "gcc -E" is a valid CPP.