web-dev-qa-db-fra.com

Problèmes de dépendance lors de l'installation de gcc 7.3 à partir du PPA de Jonathon F

J'essaie d'installer le dernier paquetage gcc-7 de PPA de Jonathon F . On dirait enfin que maintenant, il existe une version réussie pour AMD64 à partir de 2018-02-23.

J'ai rencontré les problèmes de dépendance suivants lors de l'exécution de Sudo apt-get install gcc-7.

Reading package lists... Done
Building dependency tree       
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies.
 gcc-7 : Depends: cpp-7 (= 7.3.0-5ubuntu1~16.04.york0) but it is not going to be installed
         Depends: gcc-7-base (= 7.3.0-5ubuntu1~16.04.york0) but 7.2.0-1ubuntu1~16.04 is to be installed
         Depends: libcc1-0 (>= 7.3.0-5ubuntu1~16.04.york0) but 7.2.0-1ubuntu1~16.04 is to be installed
         Depends: binutils (>= 2.28) but 2.26.1-1ubuntu1~16.04.6 is to be installed
         Depends: libgcc-7-dev (= 7.3.0-5ubuntu1~16.04.york0) but it is not going to be installed
E: Unable to correct problems, you have held broken packages.

Auparavant, j’avais installé gcc-7 à partir du ppa d’Ubuntu mais c’était pour 7.2. J'ai enlevé ce paquet.

Sous Synaptic, voici une liste de paquets suspects:

upgradeable packages in Synaptic

Des suggestions sur la façon dont je peux résoudre ces problèmes de dépendance et installer gcc 7.3?

4
WillZ

Il semble que gcc-7 (7.3) soit cassé in PPA GCC 7.3 de Jonathon F . Je ne peux pas installer GCC 7.3 sur un système Xenial propre (sans autre PPA):

$ Sudo add-apt-repository -y ppa:jonathonf/gcc-7.3
$ Sudo apt-get update
$ Sudo apt-get install gcc-7
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
 gcc-7 : Depends: libcc1-0 (>= 7.3.0-5ubuntu1~16.04.york0) but 5.4.0-6ubuntu1~16.04.9 is to be installed
         Depends: binutils (>= 2.28) but 2.26.1-1ubuntu1~16.04.6 is to be installed
         Depends: libgcc-7-dev (= 7.3.0-5ubuntu1~16.04.york0) but it is not going to be installed
E: Unable to correct problems, you have held broken packages.

$ grep -r ppa /etc/apt/sources.list*
/etc/apt/sources.list.d/jonathonf-ubuntu-gcc-7_3-xenial.list:deb http://ppa.launchpad.net/jonathonf/gcc-7.3/ubuntu xenial main
/etc/apt/sources.list.d/jonathonf-ubuntu-gcc-7_3-xenial.list:# deb-src http://ppa.launchpad.net/jonathonf/gcc-7.3/ubuntu xenial main

Vous devez donc purger ce PPA et utiliser gcc 7.2 de l’équipe équipe "PPA pour Ubuntu Toolchain Uploads (restricted)" :

Sudo apt-get install ppa-purge
Sudo ppa-purge ppa:jonathonf/gcc-7.3
Sudo add-apt-repository ppa:ubuntu-toolchain-r/test
Sudo apt-get update
Sudo apt-get install gcc-7
Sudo apt-get install -f

Puis contactez Jonathon F et l'informez du problème.

Mise à jour. Mais j’ai trouvé autre PPA ppa:jonathonf/gcc de Jonathon F . Je peux installer gcc 7.3 à partir de celui-ci.

#Sudo ppa-purge ppa:ubuntu-toolchain-r/test # remove starting # if PPA added before
#Sudo ppa-purge ppa:jonathonf/gcc-7.3 # remove starting # if PPA added before
Sudo add-apt-repository -y ppa:jonathonf/gcc
Sudo apt-get update
Sudo apt-get install gcc-7 # will install 7.3.0-5ubuntu1~16.04.york0

et même gcc-8 (version 8-20180218-1ubuntu1 ~ 16.04.york0 ).

4
N0rbert

Lors de l'ajout du ppa de jonathonf à l'aide de la commande

Sudo add-apt-repository ppa:jonathonf/gcc-7.3

un message est affiché dans les journaux

Ceci est construit contre, et nécessite, ppa: jonathonf/gcc
Plus d'infos: https://launchpad.net/~jonathonf/+archive/ubuntu/gcc-7.

L'ajout du ppa résout le problème de dépendance

Sudo add-apt-repository ppa:jonathonf/gcc
Sudo apt-get update
Sudo apt-get install gcc-7                                                        

Les problèmes de dépendance étaient

les paquetages suivants ont des dépendances non satisfaites: gcc-7: Dépendances: libcc1-0 (> = 7.3.0-23ubuntu2 ~ 16.04.york0) mais 5.4.0-6ubuntu1 ~ 16.04.11 doit être installé Dépend: libgcc-7-dev (= 7.3.0-23ubuntu2 ~ 16.04.york0) mais il ne va pas être installé E: Impossible de corriger les problèmes, vous avez conservé des paquets cassés.

0
kotsos