From 39925ca56344811821d1ca03fdc2c534fdb2a2f3 Mon Sep 17 00:00:00 2001 From: Kai Kang Date: Sun, 16 Jun 2024 23:31:35 +0800 Subject: [PATCH] src/poky:gfortran: update runtime dependencies It fails to run both `gcc` and `gfortran` with errors: | rootqemux86-64:~# x86_64-poky-linux-gcc a.c | x86_64-poky-linux-gcc: fatal error: cannot execute 'as': posix_spawnp: No such file or directory then add binutils which provides `as` to RDEPENDS of gcc. libgfortran-dev provides libgfortran.spec which required by gfortran: | rootqemux86-64:~# gfortran hello.f95 | gfortran: fatal error: cannot read spec file 'libgfortran.spec': No such file or directory And gcc provides liblto_plugin.so: | rootqemux86-64:~# gfortran hello.f95 | gfortran: fatal error: '-fuse-linker-plugin', but liblto_plugin.so not found (From OE-Core rev: 44fc7aa1468ff042739cc5a91c84ef5c2a09e0a3) Signed-off-by: Kai Kang Signed-off-by: Richard Purdie --- src/poky | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/poky b/src/poky index e288d1b223..da616e302e 160000 --- a/src/poky +++ b/src/poky @@ -1 +1 @@ -Subproject commit e288d1b223d600344678f985ffe4382fa486cbf5 +Subproject commit da616e302e66c97e1870fdd19476dacbb88a9380