0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Clang を入れてみる

Last updated at Posted at 2020-05-09

LLVM 単体では面白くなかった

LLVM を楽しもうと思ってインストールした(https://qiita.com/evakichi/items/3f2c69b827314c28f972) のはいいものの、それだけではお楽しみいただけないようで、Clang を入れてみないと面白いことができなさそうだったため Clang も入れてみます。

Clang を入れる

早速 Clang を入れてみます。ダウンロードした2020年5月9日時点ではバージョンは10.0.0みたいです。Clang のソースディレクトリで以下をおこないます。

$ mkdir build
$ cd build
$ cmake3 -G "Unix Makefiles" -DCMAKE_C_COMPILER=/usr/local/bin/gcc  -DCMAKE_INSTALL_PREFIX=/opt/clang ../.
$ make -j8
$ sudo make install

で、インストールはできますので、あとはパスを通すと終わり。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?