Ubuntu に cmake を install する。
1415 ワード
apt-get でうまくいかない
apt-get で cmake を install したけど、うまく動かなかった。
$ sudo apt-get install cmake -y
$ cmake
Inconsistency detected by ld.so: dl-version.c: 224: _dl_check_map_versions: Assertion
needed != ((void *)0)' failed!
しようがないから手動でインストール
ソースコード落として、自分でコンパイルしたらできました。
https://cmake.org/download/ ここから最新を落とす
$ wget https://cmake.org/files/v3.4/cmake-3.4.0-rc3.tar.gz
$ tar xvf cmake-3.4.0-rc3.tar.gz
$ cd cmake-3.4.0-rc3/
$ ./configure
$ make
$ sudo make install
$ export PATH="/usr/local/bin:$PATH"
$ cmake
Usage
cmake [options] <path-to-source>
cmake [options] <path-to-existing-build>
Specify a source directory to (re-)generate a build system for it in the
current working directory. Specify an existing build directory to
re-generate its build system.
Run 'cmake --help' for more information.
うごいた。
Author And Source
この問題について(Ubuntu に cmake を install する。), 我々は、より多くの情報をここで見つけました https://qiita.com/YutakakINJO/items/69f01d2abfb958ada88b著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .