Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 150257 - gcc-config (1) fails the first update with catalyst on system where libgcc_s.so.1 is needed by 'mv'
Summary: gcc-config (1) fails the first update with catalyst on system where libgcc_s....
Status: RESOLVED FIXED
Alias: None
Product: Gentoo/Alt
Classification: Unclassified
Component: FreeBSD (show other bugs)
Hardware: All FreeBSD
: High normal (vote)
Assignee: Gentoo Toolchain Maintainers
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2006-10-06 05:33 UTC by Diego Elio Pettenò (RETIRED)
Modified: 2006-10-18 21:01 UTC (History)
3 users (show)

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


Attachments
gcc-config-patch (gcc-config-patch,1.35 KB, patch)
2006-10-06 05:34 UTC, Diego Elio Pettenò (RETIRED)
Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Diego Elio Pettenò (RETIRED) gentoo-dev 2006-10-06 05:33:39 UTC
As per summary, currently the way to update libgcc_s.so.1 make impossible for catalyst to update the gcc profile the first time when the linker does not know to look into gcc's own directories and libgcc_s.so.1 is needed by the mv command.

${MV} -f "${ROOT}/${libdir}"/.gcc.config.new/* "${ROOT}/${libdir}"/

will fail if mv tries to load the just-removed libgcc_s.so.1 library.
This affects Gentoo/FreeBSD but might affect also Gentoo Linux on some architectures.

The attached patch makes sure that a copy of libgcc_s.so.1 is always found in the process.

Thanks,
Diego
Comment 1 Diego Elio Pettenò (RETIRED) gentoo-dev 2006-10-06 05:34:15 UTC
Created attachment 98931 [details, diff]
gcc-config-patch
Comment 2 SpanKY gentoo-dev 2006-10-06 13:04:07 UTC
catalyst should be running gcc-config automatically on $ROOT so stage1 should have libgcc_s.so.1 in the proper place
Comment 3 Chris Gianelloni (RETIRED) gentoo-dev 2006-10-11 06:02:24 UTC
I'll look at what catalyst is doing once we've gotten it moved to SVN, which is going on now.
Comment 4 Roy Marples (RETIRED) gentoo-dev 2006-10-15 08:37:34 UTC
I'm not sure this is a catalyst issue as I ran into the same thing just doing

ROOT=/stage3 emerge -e system
Diegos patch fixes this on my Gentoo/FreeBSD/Sparc64 :)
Comment 5 SpanKY gentoo-dev 2006-10-18 21:01:23 UTC
fixed in cvs by not removing the file anymore; let the `mv` handle it