You have to add ole32.lib to the dependencies list. That's where the function is defined.
You have to add ole32.lib to the dependencies list. That's where the function is defined.
I am at a bit of a loss. I'm simply trying to compile the debug libraries using the console provided. I've never had to edit anything at that level before. When I look at the makefile in the corelib directory it looks like it is including ole32 to me.
4.2.x compiles just fine. I have no idea what is going on.
Is there anything else I can include that would be helpful?
I can't seem to figure out what is missing. Any ideas?
One of my environmental variables, lib, was set. I went ahead and deleted it. Now everything looks to be compiling just fine.
I'm having a pretty rough time with compiling the debug files.
Now I'm having the following problem:
g++ -enable-stdcall-fixup -Wl,-enable-auto-import -Wl,-enable-runtime-pseudo-rel
oc -Wl,-s -Wl,-subsystem,console -mthreads -Wl -o "..\..\..\bin\uic3.exe" object
_script.uic3.Release -L"c:\Qt\4.3.2\lib" -L"c:\Qt\4.3.2\lib" -lQt3Support4 -lQt
Xml4 -lQtGui4 -lQtCore4
C:\MinGW\bin\..\lib\gcc\mingw32\3.4.2\..\..\..\..\ mingw32\bin\ld.exe: cannot fin
d -lQt3Support4
collect2: ld returned 1 exit status
mingw32-make[2]: *** [..\..\..\bin\uic3.exe] Error 1
mingw32-make[2]: Leaving directory `C:/Qt/4.3.2/src/tools/uic3'
mingw32-make[1]: *** [release] Error 2
mingw32-make[1]: Leaving directory `C:/Qt/4.3.2/src/tools/uic3'
mingw32-make: *** [debug-C__Qt_4_3_2_src_tools_uic3] Error 2
C:\Qt\4.3.2\src>
I'm not sure what I need to do. Suggestions are much appreciated.
When you configured Qt, you didn't enable Qt 3 support.
Enabling should build the Qt 3 support libs and solve your problem.
kroenecker (15th October 2007)
Thanks Marcel.
Bookmarks