Skip to content

Commit

Permalink
Update external
Browse files Browse the repository at this point in the history
fix fmt build
  • Loading branch information
JingMatrix committed May 18, 2024
1 parent 3c05243 commit 1f80050
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .gitmodules
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[submodule "external/lsplant"]
path = external/lsplant
url = https://github.com/LSPosed/LSPlant.git
url = https://github.com/JingMatrix/LSPlant.git
[submodule "external/dobby"]
path = external/dobby
url = https://github.com/LSPosed/Dobby.git
Expand Down
1 change: 1 addition & 0 deletions external/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ endmacro()

SET_OPTION(DOBBY_GENERATE_SHARED OFF)
SET_OPTION(Plugin.SymbolResolver OFF)
SET_OPTION(FMT_INSTALL OFF)

set(LIBCXX_SOURCES
algorithm.cpp
Expand Down
2 changes: 1 addition & 1 deletion external/fmt
Submodule fmt updated 92 files
+8 −0 .github/dependabot.yml
+3 −2 .github/pull_request_template.md
+30 −0 .github/workflows/cifuzz.yml
+11 −2 .github/workflows/doc.yml
+26 −0 .github/workflows/lint.yml
+30 −17 .github/workflows/linux.yml
+17 −2 .github/workflows/macos.yml
+65 −0 .github/workflows/scorecard.yml
+12 −4 .github/workflows/windows.yml
+13 −26 .gitignore
+128 −54 CMakeLists.txt
+5,528 −0 ChangeLog.md
+0 −5,255 ChangeLog.rst
+1 −1 LICENSE
+485 −0 README.md
+0 −531 README.rst
+6 −6 doc/_static/bootstrap.min.js
+288 −216 doc/api.rst
+11 −7 doc/build.py
+178 −19 doc/syntax.rst
+40 −2 doc/usage.rst
+13 −10 include/fmt/args.h
+3,079 −0 include/fmt/base.h
+814 −439 include/fmt/chrono.h
+76 −105 include/fmt/color.h
+40 −112 include/fmt/compile.h
+4 −3,322 include/fmt/core.h
+388 −214 include/fmt/format-inl.h
+1,500 −1,258 include/fmt/format.h
+89 −105 include/fmt/os.h
+64 −86 include/fmt/ostream.h
+235 −204 include/fmt/printf.h
+386 −268 include/fmt/ranges.h
+521 −68 include/fmt/std.h
+165 −69 include/fmt/xchar.h
+78 −54 src/fmt.cc
+1 −5 src/format.cc
+119 −81 src/os.cc
+1 −1 support/AndroidManifest.xml
+3 −3 support/Vagrantfile
+0 −1 support/bazel/.bazelrc
+1 −1 support/bazel/.bazelversion
+9 −17 support/bazel/BUILD.bazel
+4 −0 support/bazel/MODULE.bazel
+13 −58 support/bazel/README.md
+2 −1 support/bazel/WORKSPACE.bazel
+1 −1 support/build.gradle
+0 −54 support/cmake/cxx14.cmake
+46 −20 support/manage.py
+0 −159 support/rst2md.py
+26 −6 test/CMakeLists.txt
+1 −1 test/add-subdirectory-test/CMakeLists.txt
+1 −1 test/add-subdirectory-test/main.cc
+12 −10 test/args-test.cc
+1 −1 test/assert-test.cc
+235 −349 test/base-test.cc
+584 −176 test/chrono-test.cc
+2 −2 test/compile-error-test/CMakeLists.txt
+4 −5 test/compile-fp-test.cc
+38 −45 test/compile-test.cc
+1 −1 test/cuda-test/cpp14.cc
+1 −1 test/cuda-test/cuda-cpp14.cu
+2 −0 test/enforce-checks-test.cc
+1 −1 test/find-package-test/CMakeLists.txt
+28 −99 test/format-impl-test.cc
+902 −791 test/format-test.cc
+1 −1 test/fuzzing/CMakeLists.txt
+1 −1 test/fuzzing/fuzzer-common.h
+21 −24 test/gtest-extra-test.cc
+5 −5 test/gtest-extra.cc
+2 −7 test/gtest-extra.h
+1 −7 test/gtest/CMakeLists.txt
+2 −2 test/gtest/gmock-gtest-all.cc
+1 −1 test/header-only-test.cc
+16 −3 test/mock-allocator.h
+36 −88 test/module-test.cc
+1 −1 test/noexception-test.cc
+67 −98 test/os-test.cc
+37 −51 test/ostream-test.cc
+28 −45 test/posix-mock-test.cc
+4 −6 test/posix-mock.h
+25 −45 test/printf-test.cc
+1 −0 test/ranges-odr-test.cc
+384 −64 test/ranges-test.cc
+129 −61 test/scan-test.cc
+560 −137 test/scan.h
+1 −1 test/static-export-test/CMakeLists.txt
+300 −20 test/std-test.cc
+1 −1 test/unicode-test.cc
+10 −7 test/util.cc
+15 −17 test/util.h
+211 −132 test/xchar-test.cc

0 comments on commit 1f80050

Please sign in to comment.