Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 873136 - sys-firmware/seabios-1.16.0 fails to compile: FileNotFoundError: [Errno 2] No such file or directory: acpi-dsdt.dsl.i.orig
Summary: sys-firmware/seabios-1.16.0 fails to compile: FileNotFoundError: [Errno 2] No...
Status: CONFIRMED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: Current packages (show other bugs)
Hardware: All Linux
: Normal normal (vote)
Assignee: Matthias Maier
URL:
Whiteboard:
Keywords:
Depends on:
Blocks: 877673
  Show dependency tree
 
Reported: 2022-09-27 06:41 UTC by Agostino Sarubbo
Modified: 2022-10-19 18:33 UTC (History)
2 users (show)

See Also:
Package list:
Runtime testing required: ---


Attachments
build.log (build.log,58.21 KB, text/plain)
2022-09-27 06:41 UTC, Agostino Sarubbo
Details

Note You need to log in before you can comment on or make changes to this bug.
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.