| Summary: | toolchain.eclass is missing code to setup GCCBITS for gcc profiles | ||
|---|---|---|---|
| Product: | Gentoo Linux | Reporter: | piavlo <piavka> |
| Component: | Eclasses | Assignee: | Gentoo Linux bug wranglers <bug-wranglers> |
| Status: | VERIFIED DUPLICATE | ||
| Severity: | major | CC: | piavka |
| Priority: | High | ||
| Version: | 2007.0 | ||
| Hardware: | All | ||
| OS: | Linux | ||
| Whiteboard: | |||
| Package list: | Runtime testing required: | --- | |
*** This bug has been marked as a duplicate of bug 181675 *** |
Hi, I've noticed that the gcc profiles under /etc/env.d/gcc are created without GCCBITS=... As a result , in my case the /usr/bin/gcc32 and /usr/bin/gcc64 links to /usr/lib64/misc/gcc-config are not created after some investigation on the system i found toolchain.eclass is missing the following code: local mbits CC=$(XGCC) has_m32 && mbits="${mbits:+${mbits} }32" CC=$(XGCC) has_m64 && mbits="${mbits:+${mbits} }64" echo "GCCBITS=\"${mbits}\"" >> ${gcc_envd_file} was it removal intentional and if so what are the reasons to remove something that users depend on? Thanks Alex