diff options
author | Sergei Trofimovich <slyfox@gentoo.org> | 2020-05-22 11:39:07 +0100 |
---|---|---|
committer | Sergei Trofimovich <slyfox@gentoo.org> | 2020-05-22 11:39:07 +0100 |
commit | d0c8542b2ea3b6234c50e78c0067713202f4eb18 (patch) | |
tree | 408223c0636523ae5fe97392f9a7c6272929829d /gcc-config | |
parent | gcc-config: link /lib/cpp to qualified 'cpp' (diff) | |
download | gcc-config-d0c8542b2ea3b6234c50e78c0067713202f4eb18.tar.gz gcc-config-d0c8542b2ea3b6234c50e78c0067713202f4eb18.tar.bz2 gcc-config-d0c8542b2ea3b6234c50e78c0067713202f4eb18.zip |
gcc-config: add facts around tool names
Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
Diffstat (limited to 'gcc-config')
-rwxr-xr-x | gcc-config | 23 |
1 files changed, 23 insertions, 0 deletions
@@ -235,6 +235,29 @@ update_wrappers() { # for new functionality (like a version bump). local x CTARGET=$1 + # Facts on gcc's private binary dir contents: + # + # Native directory looks like: + # /usr/x86_64-pc-linux-gnu/gcc-bin/11.0.0 + # Contents looks like: + # - 'foo' ('gcc', 'c++', 'gcc-ar', 'lto-dump') + # - 'foo-${v}' (go-11, gofmt-11) + # - ${CTARGET}-foo (${CTARGET}-gcc + # + # Not each 'foo' has it's ${CTARGET}-foo match. + # Examples are: + # - lto-dump, gcov-dump, gcov-tool (no ${CTARGET}-lto-dump equvalent) + # - go-${MAJOR}, gofmt-${MAJOR} (no ${CTARGET}-go-${MAJOR} equivalent) + # - ${CTARGET}-gcc-11.0.0 (no gcc-11.0.0 equivalent) + # TODO: is it a gcc or toolchain.eclass bug? + # + # Cross directory looks liks: + # /usr/x86_64-pc-linux-gnu/ia64-unknown-linux-gnu/gcc-bin/10.1.0 + # Contents look like: + # - ${CTARGET}-foo (${CTARGET}-gcc + # + # Every tool is prefixed. + # Use the old dir to see what we wrapped up previously. local old_wrappers=( $( [[ -n ${OLD_GCC_PATH} ]] || exit 1 |