我正在開發一個處理XML文件的Qt應用程序。爲了提高性能,我使用了pugixml解析器而不是Qt的dom解析器。編譯完成後,我的應用程序和所有依賴項(dll文件,幫助程序)將作爲winapi應用程序的資源打包,以創建單個exe文件。損壞的winapi可執行文件清單
一切工作正常,直到我需要更換QString::toStdString()
與QString::toStdWString()
。原因是讀取擴展名爲(ąęśćłóźżń
)的文件到pugixml中。我運行了pugixml::document::load_file()
以前由Qt遞歸目錄循環加載的數據。包含文件名的QString
被轉換爲std::wstring
,然後轉換成const wchar_t*
與qstring.toStdWString().c_str()
。
將string
s替換爲wstring
s後,解壓縮的可執行文件運行良好。然而,包裝之後,最終的.exe文件已損壞也是明顯的,看起來像這樣:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
<security>
<requestedPrivileges>
<requestedExecutionLevel level="asInvoker"/>
</requestedPrivileges>
</security>
</trustInfo>
<compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
<application>
<!--The ID below indicates application support for Windows Vista -->
<supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}"/>
<!--The ID below indicates below indicates application support for Windows
7 -->
<supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}"/>
<!--The ID below indicates application support for Windows 8 -->
<supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}"/>
<!--The ID below indicates application support for Windows 8.1 -->
<supportedOS Id="{1f676c76-80e1-4239-95bb-83d0f6d0da78}"/>
<!--The ID below indicates application support for Windows 10 -->
<supportedOS Id="{8e0f7a12-bfb3-4fe8-b9a5-48fd50a15a9a}"/>
</application>
</compatibili
我使用Windows 7 64位,使用MinGW -w64殼編譯。最終方案的生成文件看起來是這樣的:
all: final.exe
final.exe: sad.o res.o
g++ -o final.exe -static-libgcc sad.o res.o resource.o -lcomctl32 -lshlwapi -mwindows
sad.o: sad.cpp
g++ -c sad.cpp
res.o: sad.rc resource.h resource.cpp
windres sad.rc res.o
g++ -c resource.cpp
clean:
rm -f *o final.exe
(res.o
包含程序和windres擠滿所有的依賴關係,sad.cpp
包含調用從資源我的應用程序WINAPI)。
什麼是損壞的清單? – andlabs
它包含在問題中。 XML在所有節點關閉前停止 –
然後,我們需要查看生成清單資源的代碼。 – andlabs