mirror of
https://github.com/godotengine/godot.git
synced 2024-11-23 12:43:43 +00:00
Prevent LTCG (MSVC LTO) from removing "pck" section
(cherry picked from commit e4bde938a1
)
This commit is contained in:
parent
fa906f70e9
commit
423a90043d
@ -140,6 +140,11 @@ __declspec(dllexport) int widechar_main(int argc, wchar_t **argv) {
|
||||
|
||||
setlocale(LC_CTYPE, "");
|
||||
|
||||
#ifndef TOOLS_ENABLED
|
||||
// Workaround to prevent LTCG (MSVC LTO) from removing "pck" section
|
||||
char *dummy_guard = dummy;
|
||||
#endif
|
||||
|
||||
char **argv_utf8 = new char *[argc];
|
||||
|
||||
for (int i = 0; i < argc; ++i) {
|
||||
|
Loading…
Reference in New Issue
Block a user