Reputation: 485
I have Ubuntu 20.10 LTS and want to use g++-3.4 to build things. Old things.
After googling like mad about 2 hrs and trying to add different package repositories for apt-get I finally came to conclusion that auto-update just does not work. If anyone is struggling with the same problem or have a solution - be my guest.
Upvotes: 2
Views: 2090
Reputation: 485
The only solution that worked for me is:
(sad programmer noises)
gpc-2.1-3.4_3.4.6-6ubuntu5_amd64.deb cpp-3.4_3.4.6-6ubuntu5_amd64.deb lib32g2c0_3.4.6-6ubuntu5_amd64.deb g++-3.4_3.4.6-6ubuntu5_amd64.deb libg2c0_3.4.6-6ubuntu5_amd64.deb g77-3.4_3.4.6-6ubuntu5_amd64.deb libg2c0-dev_3.4.6-6ubuntu5_amd64.deb gcc-3.4_3.4.6-6ubuntu5_amd64.deb libstdc++6-dbg_3.4.6-6ubuntu5_amd64.deb gcc-3.4-base_3.4.6-6ubuntu5_amd64.deb libstdc++6-dev_3.4.6-6ubuntu5_amd64.deb
sudo dpkg -i ./gcc-3.4-base_3.4.6-6ubuntu5_amd64.deb sudo dpkg -i ./cpp-3.4_3.4.6-6ubuntu5_amd64.deb sudo dpkg -i ./gcc-3.4_3.4.6-6ubuntu5_amd64.deb
and so on...
Check the console output errors about package dependencies to figure out the package install order.
sudo apt-get install libstdc++6
g++-3.4 -v
Upvotes: 4