mirror of
https://github.com/skyline-emu/skyline.git
synced 2024-11-05 05:35:07 +01:00
595e53f7cf
Git became significantly slower for nearly all actions due to the inclusion of Boost as a submodule which in turn had an extremely large amount of submodules itself for every single Boost component, this especially effected clients like GitKraken which had multi-second delays in operations and became unusable due to it. The reason for this ended up being checking for modifications in the Boost submodule which has been disabled by using [`submodule.<name>.ignore`](https://git-scm.com/docs/git-config#Documentation/git-config.txt-submoduleltnamegtignore) which disables any checks on the Boost submodule for changes and fixes the prior performance degradation.
41 lines
1.4 KiB
Plaintext
41 lines
1.4 KiB
Plaintext
[submodule "app/libraries/fmt"]
|
|
path = app/libraries/fmt
|
|
url = https://github.com/fmtlib/fmt
|
|
[submodule "app/libraries/oboe"]
|
|
path = app/libraries/oboe
|
|
url = https://github.com/google/oboe
|
|
branch = 1.3-stable
|
|
[submodule "app/libraries/lz4"]
|
|
path = app/libraries/lz4
|
|
url = https://github.com/lz4/lz4.git
|
|
[submodule "app/libraries/frozen"]
|
|
path = app/libraries/frozen
|
|
url = https://github.com/serge-sans-paille/frozen
|
|
[submodule "app/libraries/pugixml"]
|
|
path = app/libraries/pugixml
|
|
url = https://github.com/zeux/pugixml.git
|
|
[submodule "app/libraries/tzcode"]
|
|
path = app/libraries/tzcode
|
|
url = https://github.com/skyline-emu/tz
|
|
branch = master
|
|
[submodule "app/libraries/perfetto"]
|
|
path = app/libraries/perfetto
|
|
url = https://android.googlesource.com/platform/external/perfetto
|
|
branch = releases/v12.x
|
|
[submodule "app/libraries/vkhpp"]
|
|
path = app/libraries/vkhpp
|
|
url = https://github.com/KhronosGroup/Vulkan-Hpp
|
|
[submodule "app/libraries/vkma"]
|
|
path = app/libraries/vkma
|
|
url = https://github.com/GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator
|
|
[submodule "app/libraries/mbedtls"]
|
|
path = app/libraries/mbedtls
|
|
url = https://github.com/ARMmbed/mbedtls
|
|
[submodule "app/libraries/opus"]
|
|
path = app/libraries/opus
|
|
url = https://github.com/xiph/opus
|
|
[submodule "app/libraries/boost"]
|
|
path = app/libraries/boost
|
|
url = https://github.com/boostorg/boost.git
|
|
ignore = all
|