前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >原 编译安装opencc(linux简繁转

原 编译安装opencc(linux简繁转

作者头像
霡霂
发布2018-06-04 16:40:08
2.4K0
发布2018-06-04 16:40:08
举报
文章被收录于专栏:雨过天晴

说明:apt-get install opencc 安装的,在运行时提示下面的错误,所以不得不apt-get remove opencc 然后从git取源码安装。

运行时错误提示:

代码语言:javascript
复制
OpenCC initialization error
Configuration error
Configuration file parse error

系统说明

  • 本次操作基于tensorflow 官方的 tensorflow/tensorflow:1.3.0-rc2-py3 的docker
  • 安装源已由官方源改为阿里源
  • 以下操作均已基于root权限

拉取源码

代码语言:javascript
复制
root@tensorflow-py3:~# git clone https://github.com/BYVoid/OpenCC.git
Cloning into 'OpenCC'...
remote: Counting objects: 6474, done.
remote: Total 6474 (delta 0), reused 0 (delta 0), pack-reused 6474
Receiving objects: 100% (6474/6474), 5.17 MiB | 884.00 KiB/s, done.
Resolving deltas: 100% (4250/4250), done.
Checking connectivity... done.

github: https://github.com/BYVoid/OpenCC

第一次编译

代码语言:javascript
复制
root@tensorflow-py3:~# cd OpenCC/
root@tensorflow-py3:~/OpenCC# ls
AUTHORS         Makefile   appveyor.yml  deps  opencc.pc.in  test
CMakeLists.txt  NEWS.md    binding.gyp   doc   package.json
LICENSE         README.md  data          node  src
root@tensorflow-py3:~/OpenCC# make
mkdir -p build/rel
(cd build/rel; cmake \
-DBUILD_DOCUMENTATION:BOOL=ON \
-DENABLE_GTEST:BOOL=OFF \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=/usr \
../..)
/bin/sh: 1: cmake: not found
Makefile:24: recipe for target 'build' failed
make: *** [build] Error 127

cd 进入项目后,查看文件列表,然后用 make 命令编译,由于缺少 cmake 提示报错

安装 cmake

代码语言:javascript
复制
root@tensorflow-py3:~/OpenCC# apt-get install cmake
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following package was automatically installed and is no longer required:
  libopencc1
Use 'apt autoremove' to remove it.
The following additional packages will be installed:
  cmake-data libarchive13 libcurl3 libicu55 libjsoncpp1 liblzo2-2 libxml2
  sgml-base xml-core
Suggested packages:
  codeblocks eclipse ninja-build lrzip sgml-base-doc debhelper
The following NEW packages will be installed:
  cmake cmake-data libarchive13 libcurl3 libicu55 libjsoncpp1 liblzo2-2
  libxml2 sgml-base xml-core
0 upgraded, 10 newly installed, 0 to remove and 11 not upgraded.
Need to get 12.7 MB of archives.
After this operation, 55.3 MB of additional disk space will be used.
Do you want to continue? [Y/n] y
Get:1 http://mirrors.aliyun.com/ubuntu xenial/main amd64 sgml-base all 1.26+nmu4ubuntu1 [12.5 kB]
Get:2 http://mirrors.aliyun.com/ubuntu xenial-updates/main amd64 cmake-data all 3.5.1-1ubuntu3 [1121 kB]
Get:3 http://mirrors.aliyun.com/ubuntu xenial/main amd64 liblzo2-2 amd64 2.08-1.2 [48.7 kB]
Get:4 http://mirrors.aliyun.com/ubuntu xenial-updates/main amd64 libicu55 amd64 55.1-7ubuntu0.2 [7659 kB]
Get:5 http://mirrors.aliyun.com/ubuntu xenial-updates/main amd64 libxml2 amd64 2.9.3+dfsg1-1ubuntu0.2 [697 kB]
Get:6 http://mirrors.aliyun.com/ubuntu xenial-updates/main amd64 libarchive13 amd64 3.1.2-11ubuntu0.16.04.3 [262 kB]
Get:7 http://mirrors.aliyun.com/ubuntu xenial-updates/main amd64 libcurl3 amd64 7.47.0-1ubuntu2.2 [186 kB]
Get:8 http://mirrors.aliyun.com/ubuntu xenial/main amd64 libjsoncpp1 amd64 1.7.2-1 [73.0 kB]
Get:9 http://mirrors.aliyun.com/ubuntu xenial-updates/main amd64 cmake amd64 3.5.1-1ubuntu3 [2623 kB]
Get:10 http://mirrors.aliyun.com/ubuntu xenial/main amd64 xml-core all 0.13+nmu2 [23.3 kB]
Fetched 12.7 MB in 11s (1075 kB/s)
debconf: delaying package configuration, since apt-utils is not installed
Selecting previously unselected package sgml-base.
(Reading database ... 20022 files and directories currently installed.)
Preparing to unpack .../sgml-base_1.26+nmu4ubuntu1_all.deb ...
Unpacking sgml-base (1.26+nmu4ubuntu1) ...
Selecting previously unselected package cmake-data.
Preparing to unpack .../cmake-data_3.5.1-1ubuntu3_all.deb ...
Unpacking cmake-data (3.5.1-1ubuntu3) ...
Selecting previously unselected package liblzo2-2:amd64.
Preparing to unpack .../liblzo2-2_2.08-1.2_amd64.deb ...
Unpacking liblzo2-2:amd64 (2.08-1.2) ...
Selecting previously unselected package libicu55:amd64.
Preparing to unpack .../libicu55_55.1-7ubuntu0.2_amd64.deb ...
Unpacking libicu55:amd64 (55.1-7ubuntu0.2) ...
Selecting previously unselected package libxml2:amd64.
Preparing to unpack .../libxml2_2.9.3+dfsg1-1ubuntu0.2_amd64.deb ...
Unpacking libxml2:amd64 (2.9.3+dfsg1-1ubuntu0.2) ...
Selecting previously unselected package libarchive13:amd64.
Preparing to unpack .../libarchive13_3.1.2-11ubuntu0.16.04.3_amd64.deb ...
Unpacking libarchive13:amd64 (3.1.2-11ubuntu0.16.04.3) ...
Selecting previously unselected package libcurl3:amd64.
Preparing to unpack .../libcurl3_7.47.0-1ubuntu2.2_amd64.deb ...
Unpacking libcurl3:amd64 (7.47.0-1ubuntu2.2) ...
Selecting previously unselected package libjsoncpp1:amd64.
Preparing to unpack .../libjsoncpp1_1.7.2-1_amd64.deb ...
Unpacking libjsoncpp1:amd64 (1.7.2-1) ...
Selecting previously unselected package cmake.
Preparing to unpack .../cmake_3.5.1-1ubuntu3_amd64.deb ...
Unpacking cmake (3.5.1-1ubuntu3) ...
Selecting previously unselected package xml-core.
Preparing to unpack .../xml-core_0.13+nmu2_all.deb ...
Unpacking xml-core (0.13+nmu2) ...
Processing triggers for libc-bin (2.23-0ubuntu9) ...
Setting up sgml-base (1.26+nmu4ubuntu1) ...
Setting up cmake-data (3.5.1-1ubuntu3) ...
Setting up liblzo2-2:amd64 (2.08-1.2) ...
Setting up libicu55:amd64 (55.1-7ubuntu0.2) ...
Setting up libxml2:amd64 (2.9.3+dfsg1-1ubuntu0.2) ...
Setting up libarchive13:amd64 (3.1.2-11ubuntu0.16.04.3) ...
Setting up libcurl3:amd64 (7.47.0-1ubuntu2.2) ...
Setting up libjsoncpp1:amd64 (1.7.2-1) ...
Setting up cmake (3.5.1-1ubuntu3) ...
Setting up xml-core (0.13+nmu2) ...
Processing triggers for libc-bin (2.23-0ubuntu9) ...
Processing triggers for sgml-base (1.26+nmu4ubuntu1) ...

第二次编译

代码语言:javascript
复制
root@tensorflow-py3:~/OpenCC# make
mkdir -p build/rel
(cd build/rel; cmake \
-DBUILD_DOCUMENTATION:BOOL=ON \
-DENABLE_GTEST:BOOL=OFF \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=/usr \
../..)
-- The CXX compiler identification is GNU 5.4.0
-- Check for working CXX compiler: /usr/bin/c++
-- Check for working CXX compiler: /usr/bin/c++ -- works
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Detecting CXX compile features
-- Detecting CXX compile features - done
-- Performing Test COMPILER_HAS_HIDDEN_VISIBILITY
-- Performing Test COMPILER_HAS_HIDDEN_VISIBILITY - Success
-- Performing Test COMPILER_HAS_HIDDEN_INLINE_VISIBILITY
-- Performing Test COMPILER_HAS_HIDDEN_INLINE_VISIBILITY - Success
-- Performing Test COMPILER_HAS_DEPRECATED_ATTR
-- Performing Test COMPILER_HAS_DEPRECATED_ATTR - Success
-- Could NOT find Doxygen (missing:  DOXYGEN_EXECUTABLE)
CMake Error at doc/CMakeLists.txt:4 (message):
  Doxygen is needed to build the documentation.  Please install it correctly


-- Configuring incomplete, errors occurred!
See also "/root/OpenCC/build/rel/CMakeFiles/CMakeOutput.log".
Makefile:24: recipe for target 'build' failed
make: *** [build] Error 1

提示缺少 Doxygen, Doxygen是opencc所需要的一个插件。

安装 doxygen

代码语言:javascript
复制
root@tensorflow-py3:~/OpenCC# apt-get install doxygen
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following package was automatically installed and is no longer required:
  libopencc1
Use 'apt autoremove' to remove it.
The following additional packages will be installed:
  libclang1-3.6 libllvm3.6v5 libobjc-5-dev libobjc4
Suggested packages:
  doxygen-latex doxygen-doc doxygen-gui graphviz
The following NEW packages will be installed:
  doxygen libclang1-3.6 libllvm3.6v5 libobjc-5-dev libobjc4
0 upgraded, 5 newly installed, 0 to remove and 11 not upgraded.
Need to get 15.9 MB of archives.
After this operation, 64.0 MB of additional disk space will be used.
Do you want to continue? [Y/n] y
Get:1 http://mirrors.aliyun.com/ubuntu xenial/main amd64 libllvm3.6v5 amd64 1:3.6.2-3ubuntu2 [8075 kB]
Get:2 http://mirrors.aliyun.com/ubuntu xenial-updates/main amd64 libobjc4 amd64 5.4.0-6ubuntu1~16.04.4 [111 kB]
Get:3 http://mirrors.aliyun.com/ubuntu xenial-updates/main amd64 libobjc-5-dev amd64 5.4.0-6ubuntu1~16.04.4 [380 kB]
Get:4 http://mirrors.aliyun.com/ubuntu xenial/main amd64 libclang1-3.6 amd64 1:3.6.2-3ubuntu2 [3696 kB]
Get:5 http://mirrors.aliyun.com/ubuntu xenial/main amd64 doxygen amd64 1.8.11-1 [3679 kB]
Fetched 15.9 MB in 16s (940 kB/s)
debconf: delaying package configuration, since apt-utils is not installed
Selecting previously unselected package libllvm3.6v5:amd64.
(Reading database ... 22203 files and directories currently installed.)
Preparing to unpack .../libllvm3.6v5_1%3a3.6.2-3ubuntu2_amd64.deb ...
Unpacking libllvm3.6v5:amd64 (1:3.6.2-3ubuntu2) ...
Selecting previously unselected package libobjc4:amd64.
Preparing to unpack .../libobjc4_5.4.0-6ubuntu1~16.04.4_amd64.deb ...
Unpacking libobjc4:amd64 (5.4.0-6ubuntu1~16.04.4) ...
Selecting previously unselected package libobjc-5-dev:amd64.
Preparing to unpack .../libobjc-5-dev_5.4.0-6ubuntu1~16.04.4_amd64.deb ...
Unpacking libobjc-5-dev:amd64 (5.4.0-6ubuntu1~16.04.4) ...
Selecting previously unselected package libclang1-3.6:amd64.
Preparing to unpack .../libclang1-3.6_1%3a3.6.2-3ubuntu2_amd64.deb ...
Unpacking libclang1-3.6:amd64 (1:3.6.2-3ubuntu2) ...
Selecting previously unselected package doxygen.
Preparing to unpack .../doxygen_1.8.11-1_amd64.deb ...
Unpacking doxygen (1.8.11-1) ...
Processing triggers for libc-bin (2.23-0ubuntu9) ...
Setting up libllvm3.6v5:amd64 (1:3.6.2-3ubuntu2) ...
Setting up libobjc4:amd64 (5.4.0-6ubuntu1~16.04.4) ...
Setting up libobjc-5-dev:amd64 (5.4.0-6ubuntu1~16.04.4) ...
Setting up libclang1-3.6:amd64 (1:3.6.2-3ubuntu2) ...
Setting up doxygen (1.8.11-1) ...
Processing triggers for libc-bin (2.23-0ubuntu9) ...

第三次编译

代码语言:javascript
复制
root@tensorflow-py3:~/OpenCC# make
mkdir -p build/rel
(cd build/rel; cmake \
-DBUILD_DOCUMENTATION:BOOL=ON \
-DENABLE_GTEST:BOOL=OFF \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=/usr \
../..)
-- Found Doxygen: /usr/bin/doxygen (found version "1.8.11")
-- Configuring done
-- Generating done
-- Build files have been written to: /root/OpenCC/build/rel
make -C build/rel VERBOSE= PREFIX=/usr
make[1]: Entering directory '/root/OpenCC/build/rel'
make[2]: Entering directory '/root/OpenCC/build/rel'
make[3]: Entering directory '/root/OpenCC/build/rel'
Dependee "/root/OpenCC/build/rel/src/CMakeFiles/libopencc.dir/DependInfo.cmake" is newer than depender "/root/OpenCC/build/rel/src/CMakeFiles/libopencc.dir/depend.internal".
Dependee "/root/OpenCC/build/rel/src/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/root/OpenCC/build/rel/src/CMakeFiles/libopencc.dir/depend.internal".
Scanning dependencies of target libopencc
make[3]: Leaving directory '/root/OpenCC/build/rel'
make[3]: Entering directory '/root/OpenCC/build/rel'
[  2%] Building CXX object src/CMakeFiles/libopencc.dir/BinaryDict.cpp.o
[  4%] Building CXX object src/CMakeFiles/libopencc.dir/Config.cpp.o
[  6%] Building CXX object src/CMakeFiles/libopencc.dir/Conversion.cpp.o
[  9%] Building CXX object src/CMakeFiles/libopencc.dir/ConversionChain.cpp.o
[ 11%] Building CXX object src/CMakeFiles/libopencc.dir/Converter.cpp.o
[ 13%] Building CXX object src/CMakeFiles/libopencc.dir/DartsDict.cpp.o
[ 16%] Building CXX object src/CMakeFiles/libopencc.dir/Dict.cpp.o
[ 18%] Building CXX object src/CMakeFiles/libopencc.dir/DictConverter.cpp.o
[ 20%] Building CXX object src/CMakeFiles/libopencc.dir/DictEntry.cpp.o
[ 23%] Building CXX object src/CMakeFiles/libopencc.dir/DictGroup.cpp.o
[ 25%] Building CXX object src/CMakeFiles/libopencc.dir/MaxMatchSegmentation.cpp.o
[ 27%] Building CXX object src/CMakeFiles/libopencc.dir/PhraseExtract.cpp.o
[ 30%] Building CXX object src/CMakeFiles/libopencc.dir/SimpleConverter.cpp.o
[ 32%] Building CXX object src/CMakeFiles/libopencc.dir/Segmentation.cpp.o
[ 34%] Building CXX object src/CMakeFiles/libopencc.dir/TextDict.cpp.o
[ 37%] Building CXX object src/CMakeFiles/libopencc.dir/UTF8StringSlice.cpp.o
[ 39%] Building CXX object src/CMakeFiles/libopencc.dir/UTF8Util.cpp.o
[ 41%] Linking CXX shared library libopencc.so
make[3]: Leaving directory '/root/OpenCC/build/rel'
[ 41%] Built target libopencc
make[3]: Entering directory '/root/OpenCC/build/rel'
Dependee "/root/OpenCC/build/rel/src/tools/CMakeFiles/opencc_phrase_extract.dir/DependInfo.cmake" is newer than depender "/root/OpenCC/build/rel/src/tools/CMakeFiles/opencc_phrase_extract.dir/depend.internal".
Dependee "/root/OpenCC/build/rel/src/tools/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/root/OpenCC/build/rel/src/tools/CMakeFiles/opencc_phrase_extract.dir/depend.internal".
Scanning dependencies of target opencc_phrase_extract
make[3]: Leaving directory '/root/OpenCC/build/rel'
make[3]: Entering directory '/root/OpenCC/build/rel'
[ 44%] Building CXX object src/tools/CMakeFiles/opencc_phrase_extract.dir/PhraseExtract.cpp.o
[ 46%] Linking CXX executable opencc_phrase_extract
make[3]: Leaving directory '/root/OpenCC/build/rel'
[ 46%] Built target opencc_phrase_extract
make[3]: Entering directory '/root/OpenCC/build/rel'
Dependee "/root/OpenCC/build/rel/src/tools/CMakeFiles/opencc_dict.dir/DependInfo.cmake" is newer than depender "/root/OpenCC/build/rel/src/tools/CMakeFiles/opencc_dict.dir/depend.internal".
Dependee "/root/OpenCC/build/rel/src/tools/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/root/OpenCC/build/rel/src/tools/CMakeFiles/opencc_dict.dir/depend.internal".
Scanning dependencies of target opencc_dict
make[3]: Leaving directory '/root/OpenCC/build/rel'
make[3]: Entering directory '/root/OpenCC/build/rel'
[ 48%] Building CXX object src/tools/CMakeFiles/opencc_dict.dir/DictConverter.cpp.o
[ 51%] Linking CXX executable opencc_dict
make[3]: Leaving directory '/root/OpenCC/build/rel'
[ 51%] Built target opencc_dict
make[3]: Entering directory '/root/OpenCC/build/rel'
Dependee "/root/OpenCC/build/rel/src/tools/CMakeFiles/opencc.dir/DependInfo.cmake" is newer than depender "/root/OpenCC/build/rel/src/tools/CMakeFiles/opencc.dir/depend.internal".
Dependee "/root/OpenCC/build/rel/src/tools/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/root/OpenCC/build/rel/src/tools/CMakeFiles/opencc.dir/depend.internal".
Scanning dependencies of target opencc
make[3]: Leaving directory '/root/OpenCC/build/rel'
make[3]: Entering directory '/root/OpenCC/build/rel'
[ 53%] Building CXX object src/tools/CMakeFiles/opencc.dir/CommandLine.cpp.o
[ 55%] Linking CXX executable opencc
CMakeFiles/opencc.dir/CommandLine.cpp.o: In function `Convert(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >)':
CommandLine.cpp:(.text+0xb2b): warning: the use of `tmpnam' is dangerous, better use `mkstemp'
make[3]: Leaving directory '/root/OpenCC/build/rel'
[ 55%] Built target opencc
make[3]: Entering directory '/root/OpenCC/build/rel'
Dependee "/root/OpenCC/build/rel/doc/CMakeFiles/apidoc.dir/DependInfo.cmake" is newer than depender "/root/OpenCC/build/rel/doc/CMakeFiles/apidoc.dir/depend.internal".
Dependee "/root/OpenCC/build/rel/doc/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/root/OpenCC/build/rel/doc/CMakeFiles/apidoc.dir/depend.internal".
Scanning dependencies of target apidoc
make[3]: Leaving directory '/root/OpenCC/build/rel'
make[3]: Entering directory '/root/OpenCC/build/rel'
[ 58%] Building API Documentation
/root/OpenCC/README.md:3: warning: Unexpected html tag <img> found within <a href=...> context
/root/OpenCC/README.md:4: warning: Unexpected html tag <img> found within <a href=...> context
/root/OpenCC/README.md:5: warning: Unexpected html tag <img> found within <a href=...> context
make[3]: Leaving directory '/root/OpenCC/build/rel'
[ 58%] Built target apidoc
make[3]: Entering directory '/root/OpenCC/build/rel'
Dependee "/root/OpenCC/build/rel/data/CMakeFiles/Dictionaries.dir/DependInfo.cmake" is newer than depender "/root/OpenCC/build/rel/data/CMakeFiles/Dictionaries.dir/depend.internal".
Dependee "/root/OpenCC/build/rel/data/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/root/OpenCC/build/rel/data/CMakeFiles/Dictionaries.dir/depend.internal".
Scanning dependencies of target Dictionaries
make[3]: Leaving directory '/root/OpenCC/build/rel'
make[3]: Entering directory '/root/OpenCC/build/rel'
[ 60%] Building STCharacters.ocd
[ 62%] Building STPhrases.ocd
[ 65%] Building TSCharacters.ocd
[ 67%] Building TSPhrases.ocd
[ 69%] Building TWVariants.ocd
[ 72%] Building TWVariantsRevPhrases.ocd
[ 74%] Building JPVariants.ocd
[ 76%] Building HKVariants.ocd
[ 79%] Building HKVariantsPhrases.ocd
[ 81%] Building HKVariantsRevPhrases.ocd
[ 83%] Generating TWPhrases.txt
[ 86%] Building TWPhrases.ocd
[ 88%] Generating TWPhrasesRev.txt
[ 90%] Building TWPhrasesRev.ocd
[ 93%] Generating TWVariantsRev.txt
[ 95%] Building TWVariantsRev.ocd
[ 97%] Generating HKVariantsRev.txt
[100%] Building HKVariantsRev.ocd
make[3]: Leaving directory '/root/OpenCC/build/rel'
[100%] Built target Dictionaries
make[2]: Leaving directory '/root/OpenCC/build/rel'
make[1]: Leaving directory '/root/OpenCC/build/rel'

安装到系统目录

代码语言:javascript
复制
root@tensorflow-py3:~/OpenCC# make install
mkdir -p build/rel
(cd build/rel; cmake \
-DBUILD_DOCUMENTATION:BOOL=ON \
-DENABLE_GTEST:BOOL=OFF \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=/usr \
../..)
-- Configuring done
-- Generating done
-- Build files have been written to: /root/OpenCC/build/rel
make -C build/rel VERBOSE= PREFIX=/usr
make[1]: Entering directory '/root/OpenCC/build/rel'
make[2]: Entering directory '/root/OpenCC/build/rel'
make[3]: Entering directory '/root/OpenCC/build/rel'
make[3]: Leaving directory '/root/OpenCC/build/rel'
[ 41%] Built target libopencc
make[3]: Entering directory '/root/OpenCC/build/rel'
make[3]: Leaving directory '/root/OpenCC/build/rel'
[ 46%] Built target opencc_phrase_extract
make[3]: Entering directory '/root/OpenCC/build/rel'
make[3]: Leaving directory '/root/OpenCC/build/rel'
[ 51%] Built target opencc_dict
make[3]: Entering directory '/root/OpenCC/build/rel'
make[3]: Leaving directory '/root/OpenCC/build/rel'
[ 55%] Built target opencc
make[3]: Entering directory '/root/OpenCC/build/rel'
make[3]: Leaving directory '/root/OpenCC/build/rel'
make[3]: Entering directory '/root/OpenCC/build/rel'
[ 58%] Building API Documentation
/root/OpenCC/README.md:3: warning: Unexpected html tag <img> found within <a href=...> context
/root/OpenCC/README.md:4: warning: Unexpected html tag <img> found within <a href=...> context
/root/OpenCC/README.md:5: warning: Unexpected html tag <img> found within <a href=...> context
make[3]: Leaving directory '/root/OpenCC/build/rel'
[ 58%] Built target apidoc
make[3]: Entering directory '/root/OpenCC/build/rel'
make[3]: Leaving directory '/root/OpenCC/build/rel'
[100%] Built target Dictionaries
make[2]: Leaving directory '/root/OpenCC/build/rel'
make[1]: Leaving directory '/root/OpenCC/build/rel'
make -C build/rel install VERBOSE= PREFIX=/usr
make[1]: Entering directory '/root/OpenCC/build/rel'
make[2]: Entering directory '/root/OpenCC/build/rel'
make[3]: Entering directory '/root/OpenCC/build/rel'
make[3]: Leaving directory '/root/OpenCC/build/rel'
[ 41%] Built target libopencc
make[3]: Entering directory '/root/OpenCC/build/rel'
make[3]: Leaving directory '/root/OpenCC/build/rel'
[ 46%] Built target opencc_phrase_extract
make[3]: Entering directory '/root/OpenCC/build/rel'
make[3]: Leaving directory '/root/OpenCC/build/rel'
[ 51%] Built target opencc_dict
make[3]: Entering directory '/root/OpenCC/build/rel'
make[3]: Leaving directory '/root/OpenCC/build/rel'
[ 55%] Built target opencc
make[3]: Entering directory '/root/OpenCC/build/rel'
make[3]: Leaving directory '/root/OpenCC/build/rel'
make[3]: Entering directory '/root/OpenCC/build/rel'
[ 58%] Building API Documentation
/root/OpenCC/README.md:3: warning: Unexpected html tag <img> found within <a href=...> context
/root/OpenCC/README.md:4: warning: Unexpected html tag <img> found within <a href=...> context
/root/OpenCC/README.md:5: warning: Unexpected html tag <img> found within <a href=...> context
make[3]: Leaving directory '/root/OpenCC/build/rel'
[ 58%] Built target apidoc
make[3]: Entering directory '/root/OpenCC/build/rel'
make[3]: Leaving directory '/root/OpenCC/build/rel'
[100%] Built target Dictionaries
make[2]: Leaving directory '/root/OpenCC/build/rel'
Install the project...
-- Install configuration: "Release"
-- Installing: /usr/lib/pkgconfig/opencc.pc
-- Installing: /usr/lib/libopencc.so.1.0.0
-- Installing: /usr/lib/libopencc.so.2
-- Installing: /usr/lib/libopencc.so
-- Installing: /usr/include/opencc/BinaryDict.hpp
-- Installing: /usr/include/opencc/Common.hpp
-- Installing: /usr/include/opencc/Config.hpp
-- Installing: /usr/include/opencc/Conversion.hpp
-- Installing: /usr/include/opencc/ConversionChain.hpp
-- Installing: /usr/include/opencc/Converter.hpp
-- Installing: /usr/include/opencc/DartsDict.hpp
-- Installing: /usr/include/opencc/Dict.hpp
-- Installing: /usr/include/opencc/DictConverter.hpp
-- Installing: /usr/include/opencc/DictEntry.hpp
-- Installing: /usr/include/opencc/DictGroup.hpp
-- Installing: /usr/include/opencc/Exception.hpp
-- Installing: /usr/include/opencc/Export.hpp
-- Installing: /usr/include/opencc/Lexicon.hpp
-- Installing: /usr/include/opencc/MaxMatchSegmentation.hpp
-- Installing: /usr/include/opencc/Optional.hpp
-- Installing: /usr/include/opencc/PhraseExtract.hpp
-- Installing: /usr/include/opencc/Segmentation.hpp
-- Installing: /usr/include/opencc/Segments.hpp
-- Installing: /usr/include/opencc/SerializableDict.hpp
-- Installing: /usr/include/opencc/SimpleConverter.hpp
-- Installing: /usr/include/opencc/TextDict.hpp
-- Installing: /usr/include/opencc/UTF8StringSlice.hpp
-- Installing: /usr/include/opencc/UTF8Util.hpp
-- Installing: /usr/include/opencc/opencc.h
-- Installing: /usr/bin/opencc
-- Set runtime path of "/usr/bin/opencc" to ""
-- Installing: /usr/bin/opencc_dict
-- Set runtime path of "/usr/bin/opencc_dict" to ""
-- Installing: /usr/bin/opencc_phrase_extract
-- Set runtime path of "/usr/bin/opencc_phrase_extract" to ""
-- Installing: /usr/share//opencc//doc/html
-- Installing: /usr/share//opencc//doc/html/tabs.css
-- Installing: /usr/share//opencc//doc/html/jquery.js
-- Installing: /usr/share//opencc//doc/html/dynsections.js
-- Installing: /usr/share//opencc//doc/html/tab_a.png
-- Installing: /usr/share//opencc//doc/html/tab_b.png
-- Installing: /usr/share//opencc//doc/html/tab_h.png
-- Installing: /usr/share//opencc//doc/html/tab_s.png
-- Installing: /usr/share//opencc//doc/html/nav_h.png
-- Installing: /usr/share//opencc//doc/html/nav_f.png
-- Installing: /usr/share//opencc//doc/html/bc_s.png
-- Installing: /usr/share//opencc//doc/html/doxygen.png
-- Installing: /usr/share//opencc//doc/html/closed.png
-- Installing: /usr/share//opencc//doc/html/open.png
-- Installing: /usr/share//opencc//doc/html/bdwn.png
-- Installing: /usr/share//opencc//doc/html/sync_on.png
-- Installing: /usr/share//opencc//doc/html/sync_off.png
-- Installing: /usr/share//opencc//doc/html/nav_g.png
-- Installing: /usr/share//opencc//doc/html/doxygen.css
-- Installing: /usr/share//opencc//doc/html/search
-- Installing: /usr/share//opencc//doc/html/search/search_l.png
-- Installing: /usr/share//opencc//doc/html/search/search_m.png
-- Installing: /usr/share//opencc//doc/html/search/search_r.png
-- Installing: /usr/share//opencc//doc/html/search/close.png
-- Installing: /usr/share//opencc//doc/html/search/mag_sel.png
-- Installing: /usr/share//opencc//doc/html/search/search.css
-- Installing: /usr/share//opencc//doc/html/search/all_0.html
-- Installing: /usr/share//opencc//doc/html/search/all_0.js
-- Installing: /usr/share//opencc//doc/html/search/all_1.html
-- Installing: /usr/share//opencc//doc/html/search/all_1.js
-- Installing: /usr/share//opencc//doc/html/search/all_2.html
-- Installing: /usr/share//opencc//doc/html/search/all_2.js
-- Installing: /usr/share//opencc//doc/html/search/all_3.html
-- Installing: /usr/share//opencc//doc/html/search/all_3.js
-- Installing: /usr/share//opencc//doc/html/search/all_4.html
-- Installing: /usr/share//opencc//doc/html/search/all_4.js
-- Installing: /usr/share//opencc//doc/html/search/all_5.html
-- Installing: /usr/share//opencc//doc/html/search/all_5.js
-- Installing: /usr/share//opencc//doc/html/search/all_6.html
-- Installing: /usr/share//opencc//doc/html/search/all_6.js
-- Installing: /usr/share//opencc//doc/html/search/all_7.html
-- Installing: /usr/share//opencc//doc/html/search/all_7.js
-- Installing: /usr/share//opencc//doc/html/search/all_8.html
-- Installing: /usr/share//opencc//doc/html/search/all_8.js
-- Installing: /usr/share//opencc//doc/html/search/all_9.html
-- Installing: /usr/share//opencc//doc/html/search/all_9.js
-- Installing: /usr/share//opencc//doc/html/search/all_a.html
-- Installing: /usr/share//opencc//doc/html/search/all_a.js
-- Installing: /usr/share//opencc//doc/html/search/all_b.html
-- Installing: /usr/share//opencc//doc/html/search/all_b.js
-- Installing: /usr/share//opencc//doc/html/search/all_c.html
-- Installing: /usr/share//opencc//doc/html/search/all_c.js
-- Installing: /usr/share//opencc//doc/html/search/all_d.html
-- Installing: /usr/share//opencc//doc/html/search/all_d.js
-- Installing: /usr/share//opencc//doc/html/search/all_e.html
-- Installing: /usr/share//opencc//doc/html/search/all_e.js
-- Installing: /usr/share//opencc//doc/html/search/all_f.html
-- Installing: /usr/share//opencc//doc/html/search/all_f.js
-- Installing: /usr/share//opencc//doc/html/search/all_10.html
-- Installing: /usr/share//opencc//doc/html/search/all_10.js
-- Installing: /usr/share//opencc//doc/html/search/all_11.html
-- Installing: /usr/share//opencc//doc/html/search/all_11.js
-- Installing: /usr/share//opencc//doc/html/search/all_12.html
-- Installing: /usr/share//opencc//doc/html/search/all_12.js
-- Installing: /usr/share//opencc//doc/html/search/classes_0.html
-- Installing: /usr/share//opencc//doc/html/search/classes_0.js
-- Installing: /usr/share//opencc//doc/html/search/classes_1.html
-- Installing: /usr/share//opencc//doc/html/search/classes_1.js
-- Installing: /usr/share//opencc//doc/html/search/classes_2.html
-- Installing: /usr/share//opencc//doc/html/search/classes_2.js
-- Installing: /usr/share//opencc//doc/html/search/classes_3.html
-- Installing: /usr/share//opencc//doc/html/search/classes_3.js
-- Installing: /usr/share//opencc//doc/html/search/classes_4.html
-- Installing: /usr/share//opencc//doc/html/search/classes_4.js
-- Installing: /usr/share//opencc//doc/html/search/classes_5.html
-- Installing: /usr/share//opencc//doc/html/search/classes_5.js
-- Installing: /usr/share//opencc//doc/html/search/classes_6.html
-- Installing: /usr/share//opencc//doc/html/search/classes_6.js
-- Installing: /usr/share//opencc//doc/html/search/classes_7.html
-- Installing: /usr/share//opencc//doc/html/search/classes_7.js
-- Installing: /usr/share//opencc//doc/html/search/classes_8.html
-- Installing: /usr/share//opencc//doc/html/search/classes_8.js
-- Installing: /usr/share//opencc//doc/html/search/classes_9.html
-- Installing: /usr/share//opencc//doc/html/search/classes_9.js
-- Installing: /usr/share//opencc//doc/html/search/classes_a.html
-- Installing: /usr/share//opencc//doc/html/search/classes_a.js
-- Installing: /usr/share//opencc//doc/html/search/classes_b.html
-- Installing: /usr/share//opencc//doc/html/search/classes_b.js
-- Installing: /usr/share//opencc//doc/html/search/classes_c.html
-- Installing: /usr/share//opencc//doc/html/search/classes_c.js
-- Installing: /usr/share//opencc//doc/html/search/classes_d.html
-- Installing: /usr/share//opencc//doc/html/search/classes_d.js
-- Installing: /usr/share//opencc//doc/html/search/classes_e.html
-- Installing: /usr/share//opencc//doc/html/search/classes_e.js
-- Installing: /usr/share//opencc//doc/html/search/functions_0.html
-- Installing: /usr/share//opencc//doc/html/search/functions_0.js
-- Installing: /usr/share//opencc//doc/html/search/functions_1.html
-- Installing: /usr/share//opencc//doc/html/search/functions_1.js
-- Installing: /usr/share//opencc//doc/html/search/functions_2.html
-- Installing: /usr/share//opencc//doc/html/search/functions_2.js
-- Installing: /usr/share//opencc//doc/html/search/functions_3.html
-- Installing: /usr/share//opencc//doc/html/search/functions_3.js
-- Installing: /usr/share//opencc//doc/html/search/functions_4.html
-- Installing: /usr/share//opencc//doc/html/search/functions_4.js
-- Installing: /usr/share//opencc//doc/html/search/functions_5.html
-- Installing: /usr/share//opencc//doc/html/search/functions_5.js
-- Installing: /usr/share//opencc//doc/html/search/functions_6.html
-- Installing: /usr/share//opencc//doc/html/search/functions_6.js
-- Installing: /usr/share//opencc//doc/html/search/functions_7.html
-- Installing: /usr/share//opencc//doc/html/search/functions_7.js
-- Installing: /usr/share//opencc//doc/html/search/functions_8.html
-- Installing: /usr/share//opencc//doc/html/search/functions_8.js
-- Installing: /usr/share//opencc//doc/html/search/functions_9.html
-- Installing: /usr/share//opencc//doc/html/search/functions_9.js
-- Installing: /usr/share//opencc//doc/html/search/functions_a.html
-- Installing: /usr/share//opencc//doc/html/search/functions_a.js
-- Installing: /usr/share//opencc//doc/html/search/functions_b.html
-- Installing: /usr/share//opencc//doc/html/search/functions_b.js
-- Installing: /usr/share//opencc//doc/html/search/functions_c.html
-- Installing: /usr/share//opencc//doc/html/search/functions_c.js
-- Installing: /usr/share//opencc//doc/html/search/functions_d.html
-- Installing: /usr/share//opencc//doc/html/search/functions_d.js
-- Installing: /usr/share//opencc//doc/html/search/typedefs_0.html
-- Installing: /usr/share//opencc//doc/html/search/typedefs_0.js
-- Installing: /usr/share//opencc//doc/html/search/groups_0.html
-- Installing: /usr/share//opencc//doc/html/search/groups_0.js
-- Installing: /usr/share//opencc//doc/html/search/pages_0.html
-- Installing: /usr/share//opencc//doc/html/search/pages_0.js
-- Installing: /usr/share//opencc//doc/html/search/searchdata.js
-- Installing: /usr/share//opencc//doc/html/search/search.js
-- Installing: /usr/share//opencc//doc/html/search/nomatches.html
-- Installing: /usr/share//opencc//doc/html/node_2demo_8js-example.html
-- Installing: /usr/share//opencc//doc/html/_binary_dict_8hpp_source.html
-- Installing: /usr/share//opencc//doc/html/_cmd_line_output_8hpp_source.html
-- Installing: /usr/share//opencc//doc/html/_common_8hpp_source.html
-- Installing: /usr/share//opencc//doc/html/_config_8hpp_source.html
-- Installing: /usr/share//opencc//doc/html/_config_test_base_8hpp_source.html
-- Installing: /usr/share//opencc//doc/html/_conversion_8hpp_source.html
-- Installing: /usr/share//opencc//doc/html/_conversion_chain_8hpp_source.html
-- Installing: /usr/share//opencc//doc/html/_converter_8hpp_source.html
-- Installing: /usr/share//opencc//doc/html/_darts_dict_8hpp_source.html
-- Installing: /usr/share//opencc//doc/html/_dict_8hpp_source.html
-- Installing: /usr/share//opencc//doc/html/_dict_converter_8hpp_source.html
-- Installing: /usr/share//opencc//doc/html/_dict_entry_8hpp_source.html
-- Installing: /usr/share//opencc//doc/html/_dict_group_8hpp_source.html
-- Installing: /usr/share//opencc//doc/html/_dict_group_test_base_8hpp_source.html
-- Installing: /usr/share//opencc//doc/html/_exception_8hpp_source.html
-- Installing: /usr/share//opencc//doc/html/_export_8hpp_source.html
-- Installing: /usr/share//opencc//doc/html/_lexicon_8hpp_source.html
-- Installing: /usr/share//opencc//doc/html/_max_match_segmentation_8hpp_source.html
-- Installing: /usr/share//opencc//doc/html/opencc_8h_source.html
-- Installing: /usr/share//opencc//doc/html/_optional_8hpp_source.html
-- Installing: /usr/share//opencc//doc/html/_phrase_extract_8hpp_source.html
-- Installing: /usr/share//opencc//doc/html/_segmentation_8hpp_source.html
-- Installing: /usr/share//opencc//doc/html/_segments_8hpp_source.html
-- Installing: /usr/share//opencc//doc/html/_serializable_dict_8hpp_source.html
-- Installing: /usr/share//opencc//doc/html/_simple_converter_8hpp_source.html
-- Installing: /usr/share//opencc//doc/html/_test_utils_8hpp_source.html
-- Installing: /usr/share//opencc//doc/html/_text_dict_8hpp_source.html
-- Installing: /usr/share//opencc//doc/html/_text_dict_test_base_8hpp_source.html
-- Installing: /usr/share//opencc//doc/html/_u_t_f8_string_slice_8hpp_source.html
-- Installing: /usr/share//opencc//doc/html/_u_t_f8_util_8hpp_source.html
-- Installing: /usr/share//opencc//doc/html/group__opencc__c__api.html
-- Installing: /usr/share//opencc//doc/html/group__opencc__cpp__api.html
-- Installing: /usr/share//opencc//doc/html/group__opencc__simple__api.html
-- Installing: /usr/share//opencc//doc/html/class_cmd_line_output.html
-- Installing: /usr/share//opencc//doc/html/class_cmd_line_output.png
-- Installing: /usr/share//opencc//doc/html/class_cmd_line_output-members.html
-- Installing: /usr/share//opencc//doc/html/classopencc_1_1_binary_dict.html
-- Installing: /usr/share//opencc//doc/html/classopencc_1_1_binary_dict.png
-- Installing: /usr/share//opencc//doc/html/classopencc_1_1_binary_dict-members.html
-- Installing: /usr/share//opencc//doc/html/classopencc_1_1_config.html
-- Installing: /usr/share//opencc//doc/html/classopencc_1_1_config-members.html
-- Installing: /usr/share//opencc//doc/html/classopencc_1_1_config_test_base.html
-- Installing: /usr/share//opencc//doc/html/classopencc_1_1_config_test_base.png
-- Installing: /usr/share//opencc//doc/html/classopencc_1_1_config_test_base-members.html
-- Installing: /usr/share//opencc//doc/html/classopencc_1_1_conversion.html
-- Installing: /usr/share//opencc//doc/html/classopencc_1_1_conversion-members.html
-- Installing: /usr/share//opencc//doc/html/classopencc_1_1_conversion_chain.html
-- Installing: /usr/share//opencc//doc/html/classopencc_1_1_conversion_chain-members.html
-- Installing: /usr/share//opencc//doc/html/classopencc_1_1_converter.html
-- Installing: /usr/share//opencc//doc/html/classopencc_1_1_converter-members.html
-- Installing: /usr/share//opencc//doc/html/classopencc_1_1_darts_dict.html
-- Installing: /usr/share//opencc//doc/html/classopencc_1_1_darts_dict.png
-- Installing: /usr/share//opencc//doc/html/classopencc_1_1_darts_dict-members.html
-- Installing: /usr/share//opencc//doc/html/classopencc_1_1_dict.html
-- Installing: /usr/share//opencc//doc/html/classopencc_1_1_dict.png
-- Installing: /usr/share//opencc//doc/html/classopencc_1_1_dict-members.html
-- Installing: /usr/share//opencc//doc/html/classopencc_1_1_dict_entry.html
-- Installing: /usr/share//opencc//doc/html/classopencc_1_1_dict_entry.png
-- Installing: /usr/share//opencc//doc/html/classopencc_1_1_dict_entry-members.html
-- Installing: /usr/share//opencc//doc/html/classopencc_1_1_dict_entry_factory.html
-- Installing: /usr/share//opencc//doc/html/classopencc_1_1_dict_entry_factory-members.html
-- Installing: /usr/share//opencc//doc/html/classopencc_1_1_dict_group.html
-- Installing: /usr/share//opencc//doc/html/classopencc_1_1_dict_group.png
-- Installing: /usr/share//opencc//doc/html/classopencc_1_1_dict_group-members.html
-- Installing: /usr/share//opencc//doc/html/classopencc_1_1_dict_group_test_base.html
-- Installing: /usr/share//opencc//doc/html/classopencc_1_1_dict_group_test_base.png
-- Installing: /usr/share//opencc//doc/html/classopencc_1_1_dict_group_test_base-members.html
-- Installing: /usr/share//opencc//doc/html/classopencc_1_1_exception.html
-- Installing: /usr/share//opencc//doc/html/classopencc_1_1_exception.png
-- Installing: /usr/share//opencc//doc/html/classopencc_1_1_exception-members.html
-- Installing: /usr/share//opencc//doc/html/classopencc_1_1_file_not_found.html
-- Installing: /usr/share//opencc//doc/html/classopencc_1_1_file_not_found.png
-- Installing: /usr/share//opencc//doc/html/classopencc_1_1_file_not_found-members.html
-- Installing: /usr/share//opencc//doc/html/classopencc_1_1_file_not_writable.html
-- Installing: /usr/share//opencc//doc/html/classopencc_1_1_file_not_writable.png
-- Installing: /usr/share//opencc//doc/html/classopencc_1_1_file_not_writable-members.html
-- Installing: /usr/share//opencc//doc/html/classopencc_1_1_invalid_format.html
-- Installing: /usr/share//opencc//doc/html/classopencc_1_1_invalid_format.png
-- Installing: /usr/share//opencc//doc/html/classopencc_1_1_invalid_format-members.html
-- Installing: /usr/share//opencc//doc/html/classopencc_1_1_invalid_text_dictionary.html
-- Installing: /usr/share//opencc//doc/html/classopencc_1_1_invalid_text_dictionary.png
-- Installing: /usr/share//opencc//doc/html/classopencc_1_1_invalid_text_dictionary-members.html
-- Installing: /usr/share//opencc//doc/html/classopencc_1_1_invalid_u_t_f8.html
-- Installing: /usr/share//opencc//doc/html/classopencc_1_1_invalid_u_t_f8.png
-- Installing: /usr/share//opencc//doc/html/classopencc_1_1_invalid_u_t_f8-members.html
-- Installing: /usr/share//opencc//doc/html/classopencc_1_1_lexicon.html
-- Installing: /usr/share//opencc//doc/html/classopencc_1_1_lexicon-members.html
-- Installing: /usr/share//opencc//doc/html/classopencc_1_1_max_match_segmentation.html
-- Installing: /usr/share//opencc//doc/html/classopencc_1_1_max_match_segmentation.png
-- Installing: /usr/share//opencc//doc/html/classopencc_1_1_max_match_segmentation-members.html
-- Installing: /usr/share//opencc//doc/html/classopencc_1_1_multi_value_dict_entry.html
-- Installing: /usr/share//opencc//doc/html/classopencc_1_1_multi_value_dict_entry.png
-- Installing: /usr/share//opencc//doc/html/classopencc_1_1_multi_value_dict_entry-members.html
-- Installing: /usr/share//opencc//doc/html/classopencc_1_1_no_value_dict_entry.html
-- Installing: /usr/share//opencc//doc/html/classopencc_1_1_no_value_dict_entry.png
-- Installing: /usr/share//opencc//doc/html/classopencc_1_1_no_value_dict_entry-members.html
-- Installing: /usr/share//opencc//doc/html/classopencc_1_1_optional.html
-- Installing: /usr/share//opencc//doc/html/classopencc_1_1_optional-members.html
-- Installing: /usr/share//opencc//doc/html/classopencc_1_1_optional_3_01_t_01_5_01_4.html
-- Installing: /usr/share//opencc//doc/html/classopencc_1_1_optional_3_01_t_01_5_01_4-members.html
-- Installing: /usr/share//opencc//doc/html/classopencc_1_1_phrase_extract.html
-- Installing: /usr/share//opencc//doc/html/classopencc_1_1_phrase_extract-members.html
-- Installing: /usr/share//opencc//doc/html/structopencc_1_1_phrase_extract_1_1_signals.html
-- Installing: /usr/share//opencc//doc/html/structopencc_1_1_phrase_extract_1_1_signals-members.html
-- Installing: /usr/share//opencc//doc/html/classopencc_1_1_ptr_dict_entry.html
-- Installing: /usr/share//opencc//doc/html/classopencc_1_1_ptr_dict_entry.png
-- Installing: /usr/share//opencc//doc/html/classopencc_1_1_ptr_dict_entry-members.html
-- Installing: /usr/share//opencc//doc/html/classopencc_1_1_segmentation.html
-- Installing: /usr/share//opencc//doc/html/classopencc_1_1_segmentation.png
-- Installing: /usr/share//opencc//doc/html/classopencc_1_1_segmentation-members.html
-- Installing: /usr/share//opencc//doc/html/classopencc_1_1_segments.html
-- Installing: /usr/share//opencc//doc/html/classopencc_1_1_segments-members.html
-- Installing: /usr/share//opencc//doc/html/classopencc_1_1_segments_1_1iterator.html
-- Installing: /usr/share//opencc//doc/html/classopencc_1_1_segments_1_1iterator.png
-- Installing: /usr/share//opencc//doc/html/classopencc_1_1_segments_1_1iterator-members.html
-- Installing: /usr/share//opencc//doc/html/classopencc_1_1_serializable_dict.html
-- Installing: /usr/share//opencc//doc/html/classopencc_1_1_serializable_dict.png
-- Installing: /usr/share//opencc//doc/html/classopencc_1_1_serializable_dict-members.html
-- Installing: /usr/share//opencc//doc/html/classopencc_1_1_should_not_be_here.html
-- Installing: /usr/share//opencc//doc/html/classopencc_1_1_should_not_be_here.png
-- Installing: /usr/share//opencc//doc/html/classopencc_1_1_should_not_be_here-members.html
-- Installing: /usr/share//opencc//doc/html/classopencc_1_1_simple_converter.html
-- Installing: /usr/share//opencc//doc/html/classopencc_1_1_simple_converter-members.html
-- Installing: /usr/share//opencc//doc/html/classopencc_1_1_single_value_dict_entry.html
-- Installing: /usr/share//opencc//doc/html/classopencc_1_1_single_value_dict_entry.png
-- Installing: /usr/share//opencc//doc/html/classopencc_1_1_single_value_dict_entry-members.html
-- Installing: /usr/share//opencc//doc/html/classopencc_1_1_str_multi_value_dict_entry.html
-- Installing: /usr/share//opencc//doc/html/classopencc_1_1_str_multi_value_dict_entry.png
-- Installing: /usr/share//opencc//doc/html/classopencc_1_1_str_multi_value_dict_entry-members.html
-- Installing: /usr/share//opencc//doc/html/classopencc_1_1_str_single_value_dict_entry.html
-- Installing: /usr/share//opencc//doc/html/classopencc_1_1_str_single_value_dict_entry.png
-- Installing: /usr/share//opencc//doc/html/classopencc_1_1_str_single_value_dict_entry-members.html
-- Installing: /usr/share//opencc//doc/html/classopencc_1_1_text_dict.html
-- Installing: /usr/share//opencc//doc/html/classopencc_1_1_text_dict.png
-- Installing: /usr/share//opencc//doc/html/classopencc_1_1_text_dict-members.html
-- Installing: /usr/share//opencc//doc/html/classopencc_1_1_text_dict_test_base.html
-- Installing: /usr/share//opencc//doc/html/classopencc_1_1_text_dict_test_base.png
-- Installing: /usr/share//opencc//doc/html/classopencc_1_1_text_dict_test_base-members.html
-- Installing: /usr/share//opencc//doc/html/classopencc_1_1_u_t_f8_string_slice_base.html
-- Installing: /usr/share//opencc//doc/html/classopencc_1_1_u_t_f8_string_slice_base-members.html
-- Installing: /usr/share//opencc//doc/html/classopencc_1_1_u_t_f8_string_slice_base_1_1_hasher.html
-- Installing: /usr/share//opencc//doc/html/classopencc_1_1_u_t_f8_string_slice_base_1_1_hasher-members.html
-- Installing: /usr/share//opencc//doc/html/classopencc_1_1_u_t_f8_util.html
-- Installing: /usr/share//opencc//doc/html/classopencc_1_1_u_t_f8_util-members.html
-- Installing: /usr/share//opencc//doc/html/dir_ed1257bb0a434f54075cc5c1cfe1a20f.html
-- Installing: /usr/share//opencc//doc/html/dir_68267d1309a1af8e8297ef4c3efbcdba.html
-- Installing: /usr/share//opencc//doc/html/dir_1563a38af0d3a5e4a6330d6d45e9792a.html
-- Installing: /usr/share//opencc//doc/html/index.html
-- Installing: /usr/share//opencc//doc/html/modules.html
-- Installing: /usr/share//opencc//doc/html/annotated.html
-- Installing: /usr/share//opencc//doc/html/classes.html
-- Installing: /usr/share//opencc//doc/html/hierarchy.html
-- Installing: /usr/share//opencc//doc/html/functions.html
-- Installing: /usr/share//opencc//doc/html/functions_func.html
-- Installing: /usr/share//opencc//doc/html/examples.html
-- Installing: /usr/share//opencc//doc/html/doc.png
-- Installing: /usr/share//opencc//doc/html/folderopen.png
-- Installing: /usr/share//opencc//doc/html/folderclosed.png
-- Installing: /usr/share//opencc//doc/html/arrowdown.png
-- Installing: /usr/share//opencc//doc/html/arrowright.png
-- Installing: /usr/share//opencc//doc/html/splitbar.png
-- Installing: /usr/share/opencc/STCharacters.ocd
-- Installing: /usr/share/opencc/STPhrases.ocd
-- Installing: /usr/share/opencc/TSCharacters.ocd
-- Installing: /usr/share/opencc/TSPhrases.ocd
-- Installing: /usr/share/opencc/TWVariants.ocd
-- Installing: /usr/share/opencc/TWVariantsRevPhrases.ocd
-- Installing: /usr/share/opencc/JPVariants.ocd
-- Installing: /usr/share/opencc/HKVariants.ocd
-- Installing: /usr/share/opencc/HKVariantsPhrases.ocd
-- Installing: /usr/share/opencc/HKVariantsRevPhrases.ocd
-- Installing: /usr/share/opencc/TWPhrases.ocd
-- Installing: /usr/share/opencc/TWPhrasesRev.ocd
-- Installing: /usr/share/opencc/TWVariantsRev.ocd
-- Installing: /usr/share/opencc/HKVariantsRev.ocd
-- Installing: /usr/share/opencc/s2t.json
-- Installing: /usr/share/opencc/t2s.json
-- Installing: /usr/share/opencc/s2tw.json
-- Installing: /usr/share/opencc/s2twp.json
-- Installing: /usr/share/opencc/tw2s.json
-- Installing: /usr/share/opencc/tw2sp.json
-- Installing: /usr/share/opencc/t2tw.json
-- Installing: /usr/share/opencc/s2hk.json
-- Installing: /usr/share/opencc/hk2s.json
-- Installing: /usr/share/opencc/t2hk.json
make[1]: Leaving directory '/root/OpenCC/build/rel'

安装完成

本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • 系统说明
    • 拉取源码
      • 第一次编译
        • 安装 cmake
          • 第二次编译
            • 安装 doxygen
              • 第三次编译
                • 安装到系统目录
                相关产品与服务
                容器镜像服务
                容器镜像服务(Tencent Container Registry,TCR)为您提供安全独享、高性能的容器镜像托管分发服务。您可同时在全球多个地域创建独享实例,以实现容器镜像的就近拉取,降低拉取时间,节约带宽成本。TCR 提供细颗粒度的权限管理及访问控制,保障您的数据安全。
                领券
                问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档