cygwin - Xerces Library and Qt -
i'm trying setup xerces can use in qt creator windows.
does qt support windows/linux binaries or have compile using mingw target? how 1 goes compiling libraries in windows?
no, can't use libraries compiled linux under windows. you'll have either build or use existing windows binary distribution. how works in detail depends on third-party library want use. basic options are, in case have build yourself: build msvc under windows, mingw under windows, or cross-compile mingw e.g. linux. msvc tends less hassle under windows, mingw might work well.
important: mingw , msvc abi-incompatible when comes c++ libraries. can't use e.g. msvc-built xerces in mingw-qt project, or mingw-xerces in msvc project. affects c++ libraries, not pure c ones.
Comments
Post a Comment