So i recently updated to Ubuntu-20.04 and my g++-4.8 compiler got deleted when i tried to reinstall it using "sudo apt-get install g++-4.8" i get an error:
"Package g++-4.8 is not available, but is referred to by another package. This may mean that the package is missing, has been obsoleted, or is only available from another source
E: Package 'g++-4.8' has no installation candidate"
Im kinda new to linux so any help is appreciated thank you.
20.04
does not haveg++-4.8
. Can't you just use g++-9 ? – pLumo Apr 29 '20 at 15:59deb [URL] bionic main universe
... and update package listsudo apt update
andsudo apt install g++-4.8
– Knud Larsen Apr 29 '20 at 17:34