浏览代码

Merge pull request #57450 from Pineapple/master-ltcg-embed-pck

Prevent LTCG (MSVC LTO) from removing "pck" section
Rémi Verschelde 3 年之前
父节点
当前提交
5b1b545a58
共有 1 个文件被更改,包括 5 次插入0 次删除
  1. 5 0
      platform/windows/godot_windows.cpp

+ 5 - 0
platform/windows/godot_windows.cpp

@@ -140,6 +140,11 @@ 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) {