Skip to content

Commit

Permalink
build(deps): update thirdparty libraries
Browse files Browse the repository at this point in the history
capnproto: c4c70235ebbfc1733789f07f084c2d071679feee
glog: v0.5.0
googletest: release-1.11.0
leveldb: 1.23
marisa-trie: 006020c1df76d0d7dc6118dacc22da64da2e35c4
opencc: ver.1.1.2
yaml-cpp: yaml-cpp-0.7.0
  • Loading branch information
lotem committed Aug 1, 2021
1 parent 2593aba commit 1c2120c
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@
url = https://github.com/BYVoid/OpenCC.git
[submodule "thirdparty/src/capnproto"]
path = thirdparty/src/capnproto
url = https://github.com/lotem/capnproto.git
url = https://github.com/capnproto/capnproto.git
1 change: 1 addition & 0 deletions build.bat
Original file line number Diff line number Diff line change
Expand Up @@ -204,6 +204,7 @@ if %build_thirdparty% == 1 (
cd %THIRDPARTY%\src\yaml-cpp
cmake . -B%build_dir% %THIRDPARTY_COMMON_CMAKE_FLAGS%^
-DMSVC_SHARED_RT:BOOL=OFF^
-DYAML_MSVC_SHARED_RT:BOOL=OFF^
-DYAML_CPP_BUILD_CONTRIB:BOOL=OFF^
-DYAML_CPP_BUILD_TESTS:BOOL=OFF^
-DYAML_CPP_BUILD_TOOLS:BOOL=OFF
Expand Down
1 change: 1 addition & 0 deletions src/rime/common.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
#endif

#ifdef RIME_ENABLE_LOGGING
#define GLOG_NO_ABBREVIATED_SEVERITIES
#include <glog/logging.h>
#else
#include "no_logging.h"
Expand Down
2 changes: 1 addition & 1 deletion thirdparty/src/capnproto
Submodule capnproto updated 204 files
2 changes: 1 addition & 1 deletion thirdparty/src/glog
Submodule glog updated 97 files
+26 −2 .bazelci/presubmit.yml
+79 −0 .github/workflows/windows-builds.yml
+8 −8 .gitignore
+1 −0 AUTHORS
+0 −0 BUILD.bazel
+336 −131 CMakeLists.txt
+0 −58 CONTRIBUTING.md
+4 −0 CONTRIBUTORS
+5 −0 ChangeLog
+0 −297 INSTALL
+0 −260 Makefile.am
+0 −10 README.md
+860 −0 README.rst
+0 −17 README.windows
+0 −5 autogen.sh
+1 −0 bazel/example/BUILD.bazel
+219 −116 bazel/glog.bzl
+0 −0 cmake/DetermineGflagsNamespace.cmake
+84 −0 cmake/FindUnwind.cmake
+67 −0 cmake/GetCacheVariables.cmake
+0 −81 cmake/INSTALL.md
+11 −0 cmake/TestInitPackageConfig.cmake
+40 −0 cmake/TestPackageConfig.cmake
+0 −246 configure.ac
+0 −115 doc/designstyle.css
+0 −613 doc/glog.html
+3 −1 glog-config.cmake.in
+18 −0 glog-modules.cmake.in
+0 −16 m4/ac_have_attribute.m4
+0 −14 m4/ac_have_builtin_expect.m4
+0 −14 m4/ac_have_sync_val_compare_and_swap.m4
+0 −31 m4/ac_rwlock.m4
+0 −363 m4/acx_pthread.m4
+0 −36 m4/google_namespace.m4
+0 −123 m4/ltsugar.m4
+0 −98 m4/lt~obsolete.m4
+0 −15 m4/namespaces.m4
+0 −71 m4/pc_from_ucontext.m4
+0 −25 m4/stl_namespace.m4
+0 −15 m4/using_operator.m4
+0 −73 packages/deb.sh
+0 −7 packages/deb/README
+0 −71 packages/deb/changelog
+0 −1 packages/deb/compat
+0 −23 packages/deb/control
+0 −35 packages/deb/copyright
+0 −7 packages/deb/docs
+0 −4 packages/deb/libgoogle-glog-dev.dirs
+0 −10 packages/deb/libgoogle-glog-dev.install
+0 −1 packages/deb/libgoogle-glog0.dirs
+0 −2 packages/deb/libgoogle-glog0.install
+0 −117 packages/deb/rules
+0 −75 packages/rpm.sh
+0 −72 packages/rpm/rpm.spec
+5 −5 src/base/commandlineflags.h
+8 −8 src/base/mutex.h
+13 −7 src/config.h.cmake.in
+0 −66 src/config_for_unittests.h
+1 −1 src/demangle.cc
+15 −0 src/glog/log_severity.h
+256 −18 src/glog/logging.h.in
+3 −3 src/glog/raw_logging.h.in
+5 −12 src/glog/vlog_is_on.h.in
+17 −11 src/googletest.h
+466 −57 src/logging.cc
+1,374 −0 src/logging_custom_prefix_unittest.cc
+307 −0 src/logging_custom_prefix_unittest.err
+1 −1 src/logging_striptest_main.cc
+134 −14 src/logging_unittest.cc
+305 −305 src/logging_unittest.err
+8 −0 src/package_config_unittest/working_config/CMakeLists.txt
+6 −0 src/package_config_unittest/working_config/glog_package_config.cc
+4 −4 src/raw_logging.cc
+3 −3 src/signalhandler.cc
+3 −3 src/signalhandler_unittest.cc
+6 −3 src/stacktrace_libunwind-inl.h
+2 −2 src/stacktrace_powerpc-inl.h
+2 −2 src/stacktrace_unittest.cc
+1 −1 src/stacktrace_windows-inl.h
+1 −1 src/stacktrace_x86-inl.h
+2 −3 src/stacktrace_x86_64-inl.h
+15 −5 src/stl_logging_unittest.cc
+33 −17 src/symbolize.cc
+1 −0 src/symbolize.h
+2 −2 src/symbolize_unittest.cc
+9 −19 src/utilities.cc
+2 −2 src/utilities.h
+3 −5 src/vlog_is_on.cc
+0 −21 src/windows/config.h
+1,159 −0 src/windows/dirent.h
+0 −96 src/windows/glog/log_severity.h
+0 −1,666 src/windows/glog/logging.h
+0 −184 src/windows/glog/raw_logging.h
+0 −224 src/windows/glog/stl_logging.h
+0 −133 src/windows/glog/vlog_is_on.h
+10 −4 src/windows/port.cc
+13 −7 src/windows/port.h
2 changes: 1 addition & 1 deletion thirdparty/src/googletest
Submodule googletest updated 285 files
2 changes: 1 addition & 1 deletion thirdparty/src/leveldb
Submodule leveldb updated 145 files
2 changes: 1 addition & 1 deletion thirdparty/src/marisa-trie
Submodule marisa-trie updated 70 files
+2 −2 COPYING.md
+4 −5 README.md
+53 −11 configure.ac
+10 −5 docs/readme.en.html
+10 −5 docs/readme.ja.html
+14 −0 include/marisa/agent.h
+14 −0 include/marisa/key.h
+9 −0 include/marisa/keyset.h
+14 −0 include/marisa/query.h
+1 −1 include/marisa/scoped-array.h
+1 −1 include/marisa/scoped-ptr.h
+1 −1 lib/marisa/grimoire/algorithm/sort.h
+30 −7 lib/marisa/grimoire/intrin.h
+122 −102 lib/marisa/grimoire/vector/bit-vector.cc
+60 −0 tests/base-test.cc
+1 −1 tools/Makefile.am
+121 −47 tools/marisa-benchmark.cc
+2 −2 vs2008/base-test/base-test.vcproj
+2 −2 vs2008/io-test/io-test.vcproj
+2 −2 vs2008/libmarisa/libmarisa.vcproj
+2 −2 vs2008/marisa-benchmark/marisa-benchmark.vcproj
+2 −2 vs2008/marisa-build/marisa-build.vcproj
+2 −2 vs2008/marisa-common-prefix-search/marisa-common-prefix-search.vcproj
+2 −2 vs2008/marisa-dump/marisa-dump.vcproj
+2 −2 vs2008/marisa-lookup/marisa-lookup.vcproj
+2 −2 vs2008/marisa-predictive-search/marisa-predictive-search.vcproj
+2 −2 vs2008/marisa-reverse-lookup/marisa-reverse-lookup.vcproj
+2 −2 vs2008/marisa-test/marisa-test.vcproj
+2 −2 vs2008/trie-test/trie-test.vcproj
+2 −2 vs2008/vector-test/vector-test.vcproj
+143 −0 vs2019/base-test/base-test.vcxproj
+27 −0 vs2019/base-test/base-test.vcxproj.filters
+4 −0 vs2019/base-test/base-test.vcxproj.user
+143 −0 vs2019/io-test/io-test.vcxproj
+27 −0 vs2019/io-test/io-test.vcxproj.filters
+4 −0 vs2019/io-test/io-test.vcxproj.user
+209 −0 vs2019/libmarisa/libmarisa.vcxproj
+198 −0 vs2019/libmarisa/libmarisa.vcxproj.filters
+4 −0 vs2019/libmarisa/libmarisa.vcxproj.user
+144 −0 vs2019/marisa-benchmark/marisa-benchmark.vcxproj
+30 −0 vs2019/marisa-benchmark/marisa-benchmark.vcxproj.filters
+4 −0 vs2019/marisa-benchmark/marisa-benchmark.vcxproj.user
+144 −0 vs2019/marisa-build/marisa-build.vcxproj
+30 −0 vs2019/marisa-build/marisa-build.vcxproj.filters
+4 −0 vs2019/marisa-build/marisa-build.vcxproj.user
+144 −0 vs2019/marisa-common-prefix-search/marisa-common-prefix-search.vcxproj
+30 −0 vs2019/marisa-common-prefix-search/marisa-common-prefix-search.vcxproj.filters
+4 −0 vs2019/marisa-common-prefix-search/marisa-common-prefix-search.vcxproj.user
+144 −0 vs2019/marisa-dump/marisa-dump.vcxproj
+30 −0 vs2019/marisa-dump/marisa-dump.vcxproj.filters
+4 −0 vs2019/marisa-dump/marisa-dump.vcxproj.user
+144 −0 vs2019/marisa-lookup/marisa-lookup.vcxproj
+30 −0 vs2019/marisa-lookup/marisa-lookup.vcxproj.filters
+4 −0 vs2019/marisa-lookup/marisa-lookup.vcxproj.user
+144 −0 vs2019/marisa-predictive-search/marisa-predictive-search.vcxproj
+30 −0 vs2019/marisa-predictive-search/marisa-predictive-search.vcxproj.filters
+4 −0 vs2019/marisa-predictive-search/marisa-predictive-search.vcxproj.user
+144 −0 vs2019/marisa-reverse-lookup/marisa-reverse-lookup.vcxproj
+30 −0 vs2019/marisa-reverse-lookup/marisa-reverse-lookup.vcxproj.filters
+4 −0 vs2019/marisa-reverse-lookup/marisa-reverse-lookup.vcxproj.user
+143 −0 vs2019/marisa-test/marisa-test.vcxproj
+27 −0 vs2019/marisa-test/marisa-test.vcxproj.filters
+4 −0 vs2019/marisa-test/marisa-test.vcxproj.user
+143 −0 vs2019/trie-test/trie-test.vcxproj
+27 −0 vs2019/trie-test/trie-test.vcxproj.filters
+4 −0 vs2019/trie-test/trie-test.vcxproj.user
+143 −0 vs2019/vector-test/vector-test.vcxproj
+27 −0 vs2019/vector-test/vector-test.vcxproj.filters
+4 −0 vs2019/vector-test/vector-test.vcxproj.user
+151 −0 vs2019/vs2019.sln
2 changes: 1 addition & 1 deletion thirdparty/src/opencc
Submodule opencc updated 117 files
2 changes: 1 addition & 1 deletion thirdparty/src/yaml-cpp
Submodule yaml-cpp updated 493 files

0 comments on commit 1c2120c

Please sign in to comment.