You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
echo "Please use the below bash commandline for-loop to move your old toolchain softlinks to *.perftools and make this new version of gcc and main toolchain"
echo "for i in gcc gcc-ar gcc-ranlib gcc-nm cpp c++ g++;do mv /usr/bin/$i /usr/bin/$i"\.perftools"; ln -sf $PWD/GCC-14/bin/$i /usr/bin/ ;done"
echo ""
echo "Please use the below bash commandline for-loop to revert from this version of gcc to the original"
echo "for i in gcc gcc-ar gcc-ranlib gcc-nm cpp c++ g++;do mv /usr/bin/$i"\.perftools" /usr/bin/$i;done"