web-dev-qa-db-ja.com

Ubuntu 14.04.3にclang 3.8をインストールする

次の明らかなコマンドを試しました。

Sudo apt-get update
Sudo apt-get install clang-3.8

しかし、私はメッセージを受け取ります:

Reading package lists... Done
Building dependency tree       
Reading state information... Done
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.

そして私は試しました:

Sudo apt-get update
Sudo aptitude install clang-3.8

しかし、メッセージを取得します:

Couldn't find package "clang-3.8".  However, the following
packages contain "clang-3.8" in their name:
  clang-3.8-doc 
Couldn't find package "clang-3.8".  However, the following
packages contain "clang-3.8" in their name:
  clang-3.8-doc 
No packages will be installed, upgraded, or removed.
0 packages upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Need to get 0 B of archives. After unpacking 0 B will be used.

3.5より新しいclangのバージョンを期待しています。助言がありますか?

15
Kyle McCormick

14.04.3の最新バージョンは Trusty Updatesのclang 3.6 のようです。しかし、開発者はPPAを管理しており、最新バージョンを入手できます。

LLVM Debian/Ubuntuナイトリーパッケージ

3.8をインストールするには、最初にキーを追加します。

wget -O - http://llvm.org/apt/llvm-snapshot.gpg.key|Sudo apt-key add -

そして、次の行を/etc/apt/sources.listに手動で追加するか、GUIの「Software&Updates」を使用して、3.8のリポジトリを追加します。

deb http://llvm.org/apt/trusty/ llvm-toolchain-trusty-3.8 main

テクニックを示すためのスクリーンショット:

enter image description here

次に、次を実行します。

Sudo apt-get update
Sudo apt-get install clang-3.8 lldb-3.8

次のようにインストールをテストします。

andrew@corinth:~$ clang-3.8 --version
clang version 3.8.0-svn262614-1~exp1 (branches/release_38)
Target: x86_64-unknown-linux-gnu
Thread model: posix
InstalledDir: /usr/bin
andrew@corinth:~$ 

そして、うまくいけば、これでうまくいくでしょう...

24
andrew.46