How to set the environmental variables

  • Thread starter Milos Puchta via .NET 247
  • Start date
M

Milos Puchta via .NET 247

(Type your message here)

--------------------------------
From: Milos Puchta

We have problem with the building Qt examples
as follows from the fragment of log file.

Thanks for your suggestions.

Rgds,
Milos

For C:\Qt\tutorial\t9\t9.pro
Qt is now configured for building. Just run nmake.
To reconfigure, run nmake clean and configure.
cd tutorial
nmake /K
cd t1
nmake -f Makefile
Microsoft (R) Program Maintenance Utility Version 7.10.3077
Copyright (C) Microsoft Corporation. All rights reserved.
Microsoft (R) Program Maintenance Utility Version 7.10.3077
Copyright (C) Microsoft Corporation. All rights reserved.
cl -c -nologo -Zm200 -W3 -w34100 -w34189 -MD -O1 -GX -DUNICODE -DWIN32 -DQT_EDU -DQT_DLL -DQT_THREAD_SUPPORT-DQT_ACCESSIBILITY_SUPPORT -DQT_NO_DEBUG -I"C:\Qt\include"-I"C:\Qt\tutorial\t1" -I"tmp\moc\release_mt_shared"-I"C:\Qt\mkspecs\win32-msvc.net" -Fotmp\obj\release_mt_shared\@C:\DOCUME~1\SKEN\LOCALS~1\Temp\nm3.tmp
Microsoft (R) Program Maintenance Utility Version 7.10.3077
Copyright (C) Microsoft Corporation. All rights reserved.
main.cpp
link /NOLOGO /DELAYLOAD:comdlg32.dll /DELAYLOAD:blush:leaut32.dll/DELAYLOAD:winmm.dll /DELAYLOAD:wsock32.dll/DELAYLOAD:winspool.dll /DELAYLOAD:blush:pengl32.dll/SUBSYSTEM:WINDOWS /LIBPATH:"C:\Qt\lib" /OUT:t1.exe@C:\DOCUME~1\SKEN\LOCALS~1\Temp\nm4.tmp
LINK : warning LNK4199: /DELAYLOAD:comdlg32.dll ignored; noimports found from comdlg32.dll
LINK : warning LNK4199: /DELAYLOAD:blush:leaut32.dll ignored; noimports found from oleaut32.dll
LINK : warning LNK4199: /DELAYLOAD:winmm.dll ignored; no importsfound from winmm.dll
LINK : warning LNK4199: /DELAYLOAD:wsock32.dll ignored; noimports found from wsock32.dll
LINK : warning LNK4199: /DELAYLOAD:winspool.dll ignored; noimports found from winspool.dll
LINK : warning LNK4199: /DELAYLOAD:blush:pengl32.dll ignored; noimports found from opengl32.dll
LINK : warning LNK4089: all references to 'MSVCP71.dll' discardedby /OPT:REF
cd t2
nmake -f Makefile
cl -c -nologo -Zm200 -W3 -w34100 -w34189 -MD -O1 -GX -DUNICODE -DWIN32 -DQT_EDU -DQT_DLL -DQT_THREAD_SUPPORT-DQT_ACCESSIBILITY_SUPPORT -DQT_NO_DEBUG -I"C:\Qt\include"-I"C:\Qt\tutorial\t2" -I"tmp\moc\release_mt_shared"-I"C:\Qt\mkspecs\win32-msvc.net" -Fotmp\obj\release_mt_shared\@C:\DOCUME~1\SKEN\LOCALS~1\Temp\nm6.tmp
Microsoft (R) Program Maintenance Utility Version 7.10.3077
Copyright (C) Microsoft Corporation. All rights reserved.
main.cpp
link /NOLOGO /DELAYLOAD:comdlg32.dll /DELAYLOAD:blush:leaut32.dll/DELAYLOAD:winmm.dll /DELAYLOAD:wsock32.dll/DELAYLOAD:winspool.dll /DELAYLOAD:blush:pengl32.dll/SUBSYSTEM:WINDOWS /LIBPATH:"C:\Qt\lib" /OUT:t2.exe@C:\DOCUME~1\SKEN\LOCALS~1\Temp\nm7.tmp
LINK : warning LNK4199: /DELAYLOAD:comdlg32.dll ignored; noimports found from comdlg32.dll
LINK : warning LNK4199: /DELAYLOAD:blush:leaut32.dll ignored; noimports found from oleaut32.dll
LINK : warning LNK4199: /DELAYLOAD:winmm.dll ignored; no importsfound from winmm.dll
LINK : warning LNK4199: /DELAYLOAD:wsock32.dll ignored; noimports found from wsock32.dll
LINK : warning LNK4199: /DELAYLOAD:winspool.dll ignored; noimports found from winspool.dll
LINK : warning LNK4199: /DELAYLOAD:blush:pengl32.dll ignored; noimports found from opengl32.dll
LINK : warning LNK4089: all references to 'MSVCP71.dll' discardedby /OPT:REF
cd t3
 
L

Larry Brasfield

Milos Puchta via .NET 247 said:
(Type your message here)
No thanks. That would be top-posting, a Usenet no-no.
We have problem with the building Qt examples
as follows from the fragment of log file.

It looks like just warnings to me. If that is a problem,
the problem is developers who are willing to release when
warnings are emitted by their build. This tells me that
they probably tend to ignore warnings, usually a bad sign
with respect to software quality.
Thanks for your suggestions.

Rgds,
Milos

[Cut log dump with much extraneous junk included.]

Please try to limit your posts to relevant information.

[Trimmed "problem" messages to eliminate duplicates.]
LINK : warning LNK4199: /DELAYLOAD:comdlg32.dll ignored;
no imports found from comdlg32.dll
LINK : warning LNK4089: all references to 'MSVCP71.dll'
discarded by /OPT:REF

My suggestion is to stop including libraries in your links
which have nothing to contribute to the linked image. Then
the linker will stop emitting those warnings.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top