3

I already read these threads:

but none of them helped me, because my problem is a Little bit different.

When I run sudo apt-get install llvm-3.4 libclang1-3.4 llvm-3.4-dev I get this output:

Paketlisten werden gelesen... Fertig
Abhängigkeitsbaum wird aufgebaut       
Statusinformationen werden eingelesen... Fertig
libclang1-3.4 ist schon die neueste Version.
libclang1-3.4 wurde als manuell installiert festgelegt.
Einige Pakete konnten nicht installiert werden. Das kann bedeuten, dass
Sie eine unmögliche Situation angefordert haben oder, wenn Sie die
Unstable-Distribution verwenden, dass einige erforderliche Pakete noch
nicht erstellt wurden oder Incoming noch nicht verlassen haben.
Die folgenden Informationen helfen Ihnen vielleicht, die Situation zu lösen:

Die folgenden Pakete haben unerfüllte Abhängigkeiten:
llvm-3.4 : Hängt ab von: libclang1 (>= 1:3.4~svn193671-1~exp1) soll aber nicht installiert werden
E: Probleme können nicht korrigiert werden, Sie haben zurückgehaltene defekte Pakete.

Sorry that it's german... but it says that libclang1-3.4 is already the newest Version and manually installed, and that llvm-3.4 depends on libclang1 (>= 1:3.4) which should not be installed, and that I have Held broken packages.

I really don't know what to do.

I want to install Version 3.4 because I want to work with the lldb which is part of the 3.4 package.

5
  • You can read answer to question - stackoverflow.com/questions/17657261/… it might be useful Commented Nov 1, 2013 at 5:07
  • The current release of LLVM is 3.3. LLVM 3.4 has not been released; it should be released in December 2014. Commented Nov 4, 2013 at 6:04
  • @MarshallClow: I followed the steps outlined at this page: llvm.org/apt. And under Install everything has this dubious 3.4. That's why I tried to install Version 3.4. Commented Nov 4, 2013 at 8:14
  • @Rico-E - those are nightly builds. That's perfectly fine to use, but you should be aware that it is changing every day. It may contain bugs that were not there yesterday, and may be gone tomorrow. Commented Nov 4, 2013 at 14:22
  • @MarshallClow: I'm fine with that, but it doesn't help me to install this. Commented Nov 4, 2013 at 15:58

1 Answer 1

1

At first update your repository with

$ sudo apt-get update

Then install the dependent package as

$ sudo apt-get install libclang1 

Also try with

$ sudo apt-get install -f 

then install the required package. It is basically a package dependency problem. Try finding how to remove/install package dependency.

Sign up to request clarification or add additional context in comments.

2 Comments

Unfortunately this doesn't help. After I did all the steps, I still get the Output, that llvm-3.4 has unmet dependencies with libclang1 (>=1:3.4).
just check out this link & try with it. askubuntu.com/questions/126474/…

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.