mirror of https://github.com/WerWolv/ImHex.git
git: Improve indexing performance of repo
This commit is contained in:
parent
68df6d37f7
commit
2c71f61bfc
|
@ -1,6 +1,7 @@
|
||||||
[submodule "external/nativefiledialog"]
|
[submodule "external/nativefiledialog"]
|
||||||
path = external/nativefiledialog
|
path = external/nativefiledialog
|
||||||
url = https://github.com/btzy/nativefiledialog-extended
|
url = https://github.com/btzy/nativefiledialog-extended
|
||||||
|
ignore = dirty
|
||||||
[submodule "external/yara/yara"]
|
[submodule "external/yara/yara"]
|
||||||
path = external/yara/yara
|
path = external/yara/yara
|
||||||
url = https://github.com/VirusTotal/yara
|
url = https://github.com/VirusTotal/yara
|
||||||
|
@ -8,9 +9,12 @@
|
||||||
[submodule "external/xdgpp"]
|
[submodule "external/xdgpp"]
|
||||||
path = external/xdgpp
|
path = external/xdgpp
|
||||||
url = https://git.sr.ht/~danyspin97/xdgpp
|
url = https://git.sr.ht/~danyspin97/xdgpp
|
||||||
|
ignore = dirty
|
||||||
[submodule "external/fmt"]
|
[submodule "external/fmt"]
|
||||||
path = external/fmt
|
path = external/fmt
|
||||||
url = https://github.com/fmtlib/fmt
|
url = https://github.com/fmtlib/fmt
|
||||||
|
ignore = dirty
|
||||||
[submodule "external/curl"]
|
[submodule "external/curl"]
|
||||||
path = external/curl
|
path = external/curl
|
||||||
url = https://github.com/curl/curl
|
url = https://github.com/curl/curl
|
||||||
|
ignore = dirty
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
#if defined(OS_WINDOWS)
|
#if defined(OS_WINDOWS)
|
||||||
|
|
||||||
#define RESOURCE(name, path) __asm__ ( \
|
#define RESOURCE(name, path) __asm__ ( \
|
||||||
".section .rodata\n" \
|
".section .rodata\n" \
|
||||||
".global " #name "\n" \
|
".global " #name "\n" \
|
||||||
|
@ -9,6 +10,7 @@
|
||||||
".int " #name "_size - " #name "\n" \
|
".int " #name "_size - " #name "\n" \
|
||||||
".align 8\n" \
|
".align 8\n" \
|
||||||
)
|
)
|
||||||
|
|
||||||
#else
|
#else
|
||||||
|
|
||||||
#define RESOURCE(name, path) __asm__ ( \
|
#define RESOURCE(name, path) __asm__ ( \
|
||||||
|
@ -16,12 +18,12 @@
|
||||||
".global " #name "\n" \
|
".global " #name "\n" \
|
||||||
".global " #name "_size\n" \
|
".global " #name "_size\n" \
|
||||||
#name ":\n" \
|
#name ":\n" \
|
||||||
".incbin \"" path "\"\n" \
|
".incbin \"" path "\"\n" \
|
||||||
".type " #name ", @object\n" \
|
".type " #name ", @object\n" \
|
||||||
".size " #name "_size, 1\n" \
|
".size " #name "_size, 1\n" \
|
||||||
#name "_size:\n" \
|
#name "_size:\n" \
|
||||||
".int " #name "_size - " #name "\n" \
|
".int " #name "_size - " #name "\n" \
|
||||||
".align 8\n" \
|
".align 8\n" \
|
||||||
)
|
)
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue