wxmsw32u_qa not found

Do you have a typical platform dependent issue you're battling with ? Ask it here. Make sure you mention your platform, compiler, and wxWidgets version.
Post Reply
ultrajunkie
Knows some wx things
Knows some wx things
Posts: 29
Joined: Sun May 30, 2021 10:11 am

wxmsw32u_qa not found

Post by ultrajunkie »

During linking I get an error that one library is not found (wxmsw32u_qa). It looks like it is only necessary for VC, but existence is checked also for gcc.

I have seen that others also ran into this issue. As a workaround I copied and renamed the respective files from the binaries collection which solved the problem.

However I'd like to understand why it was not built from the sources and how I can change this or why it is searched when it is not needed.

Additional information: I'm using Codelite 16.2.0 coming with a tool wx-config which seems to be responsible for this phenomenon.
ONEEYEMAN
Part Of The Furniture
Part Of The Furniture
Posts: 7458
Joined: Sat Apr 16, 2005 7:22 am
Location: USA, Ukraine

Re: wxmsw32u_qa not found

Post by ONEEYEMAN »

Hi,
How did you build wx? What version?
What compiler do you use?
How do you set up CodeLite? What parameters did you set for its wx-config?

Thank you.
PB
Part Of The Furniture
Part Of The Furniture
Posts: 4193
Joined: Sun Jan 03, 2010 5:45 pm

Re: wxmsw32u_qa not found

Post by PB »

wxQA library (i.e., wxDebugReport) is available only for MSVC-built wxWidgets (at least on Windows), since MSVC is the only Windows compiler providing the support for this feature (i.e., Win32 structured exception handling).
Post Reply