Trolltech was very kind to send us over a copy of the recently released "C++ GUI Programming with Qt 3" book, part of "Bruce Perens' Open Source Series". The book weighs in at about 400 pages and comes with a CD-ROM loaded with software not found elsewhere freely.
Permalink for comment
To read all comments associated with this story, please click here.
I am afraid your suggestion won't work. Unless I'm totally mistaken, your suggestion will only work with C code, not C++ code.
I think it is next to impossible to use C++ across compilers, because the internal C++ data structures and the function name mangling is virtually guaranteed to be different between compilers.
So, AFAIK you *will* need dlls compiled with the compiler you want to work with.
"You only need the dlls"
I am afraid your suggestion won't work. Unless I'm totally mistaken, your suggestion will only work with C code, not C++ code.
I think it is next to impossible to use C++ across compilers, because the internal C++ data structures and the function name mangling is virtually guaranteed to be different between compilers.
So, AFAIK you *will* need dlls compiled with the compiler you want to work with.