Hi.

I just switched from Qt 2009.01 to Qt 2009.02 SDK. Now I get the following error at the linking step:

../lib/bass.dll: file not recognized: File format not recognized
collect2: ld returned 1 exit status
mingw32-make.exe[1]: *** [..\bin\wip\uman.exe] Error 1
E:\Tools\Qt\2009.02\mingw\bin\mingw32-make.exe: *** [release] Error 2
Exited with code 2.
Error while building project uman
When executing build step 'Make'
I do not have a "bass.a" but a "bass.dll" and a "bass.lib" (which I do not need for linking dynamically).

Here some lines from the project file:

Qt Code:
  1. win32 {
  2. RC_FILE = uman.rc
  3. INCLUDEPATH += ../include/taglib \
  4. ../include/bass
  5. LIBS += -L"../lib" \
  6. -ltag \
  7. -lbass
  8. }
To copy to clipboard, switch view to plain text mode 

What significant change did 2009.02 make?

Bye