diff options
-rw-r--r-- | README | 6 | ||||
-rwxr-xr-x | gcc-config | 7 |
2 files changed, 4 insertions, 9 deletions
@@ -56,12 +56,6 @@ Files, variables, things. Before Aug 2018 used to contain paths for cross-compilers. To be removed eventually. - /etc/env.d/gcc/.NATIVE -> x86_64-pc-linux-gnu-8.1.0 (link to target config) - - Link to current native toolchain. - - Before Aug 2018 was used by gcc binary wrapper. Not used nowadays. - TODOs ----- @@ -656,14 +656,15 @@ switch_profile() { fi # Punt old files; maybe globs too much, but oh well + # 'NATIVE' and '.NATIVE' were used by gcc-wrapper before Aug 2018 + # and are not used as wrapper is removed. + # '.NATIVE' was created before Sept 2019. + # We clean up both for now. Should be safe to remove in 2021. rm -f \ "${GCC_ENV_D}/NATIVE" "${GCC_ENV_D}/.NATIVE" \ "${ENV_D}/05gcc" "${ENV_D}/05gcc-${CTARGET}" \ "${ENV_D}/05gcc-${CTARGET}"-* "${GCC_ENV_D}/config-${CTARGET}"-* - # Help out the gcc wrapper - ln -sf ${CC_COMP} "${GCC_ENV_D}/.NATIVE" - # Relocate random crap local x libdir pkgconfdir local mver=${CC_COMP_VERSION:0:3} |