mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-22 14:55:36 +08:00
Support installing of mingw 64bit products
This commit is contained in:
committed by
Klaus Basan
parent
0de2b9d4b5
commit
745e09ddb8
@@ -207,7 +207,12 @@ win32-msvc2015 {
|
||||
}
|
||||
|
||||
win32-g++ {
|
||||
VC_RUNTIME_LIBS *= libgcc_s_dw2-1
|
||||
equals(WORD_SIZE,32) {
|
||||
VC_RUNTIME_LIBS *= libgcc_s_dw2-1
|
||||
}
|
||||
equals(WORD_SIZE,64) {
|
||||
VC_RUNTIME_LIBS *= libgcc_s_seh-1
|
||||
}
|
||||
VC_RUNTIME_LIBS *= libwinpthread-1
|
||||
|
||||
vc_runtime_target.path *= $${PREFIX}/bin
|
||||
|
||||
@@ -169,7 +169,12 @@ win32 {
|
||||
}
|
||||
|
||||
win32-g++ {
|
||||
dep_target.files *= $$[QT_INSTALL_BINS]/libgcc_s_dw2-1.dll
|
||||
equals(WORD_SIZE,32) {
|
||||
dep_target.files *= $$[QT_INSTALL_BINS]/libgcc_s_dw2-1.dll
|
||||
}
|
||||
equals(WORD_SIZE,64) {
|
||||
dep_target.files *= $$[QT_INSTALL_BINS]/libgcc_s_seh-1.dll
|
||||
}
|
||||
dep_target.files *= $$[QT_INSTALL_BINS]/libwinpthread-1.dll
|
||||
|
||||
# libstdc++-6.dll needs a workaround since copy does not accept a filepath with '+' in it
|
||||
|
||||
Reference in New Issue
Block a user