GCC 5 버전을 설치하기 위한 후보가 없다는 에러이다.
먼저, 우분투 버전의 문제로 20.04는 기본적으로 GCC 9 버전을 default로 해준다.
GCC 5버전은 xenial의 저장소에 있으며 16.04의 저장소를 임시로 사용하여 설치할 수 있다.
1
2
3
4
5
6
7
|
// etc/apt/source.list
deb http://dk.archive.ubuntu.com/ubuntu/ xenial main
deb http://dk.archive.ubuntu.com/ubuntu/ xenial universe
$ sudo apt update
$ sudo apt install g++-5 gcc-5
|
cs |
https://askubuntu.com/questions/1235819/ubuntu-20-04-gcc-version-lower-than-gcc-7
'빨간색 에러들' 카테고리의 다른 글
[Ubuntu20.04] LLVM_ [90%] lib/libLTO.so.11 failed 수동 빌드 (0) | 2021.10.13 |
---|---|
[Ubuntu]Virtualbox guest image addition / 게스트 확장 이미지 설정 (0) | 2021.10.06 |
[Ubuntu 20.04 LTS]Unable to correct problems, you have held broken packages (0) | 2021.09.28 |
[docker] docker system purne (0) | 2021.09.27 |
[ubuntu]] echo 3 > /proc/sys/vm/drop_caches" - Permission denied as root (2) | 2021.09.13 |