Compiler errors with first use of wxCrafter

CodeLite installation/troubleshooting forum
User avatar
eranif
CodeLite Plugin
Posts: 6372
Joined: Wed Feb 06, 2008 9:29 pm
Genuine User: Yes
IDE Question: C++
Contact:

Re: Compiler errors with first use of wxCrafter

Post by eranif »

Do you get an error in the `output` tab?
Usually, these kind of errors are caused due to missing DLLs

Try adding the wxWidgets libraries location to the path.

According to your build log, add this line to the environment variables within CodeLite:

Settings->Environment variables:

Code: Select all

PATH=C:\wxWidgets-3.1.3\lib\gcc_dll;$PATH
And try to run it again. If it still fails, try to run it under debugger (Default keyboard shortcut F5)
Make sure you have read the HOW TO POST thread
root
CodeLite Enthusiast
Posts: 21
Joined: Tue Jan 21, 2020 4:10 pm
Genuine User: Yes
IDE Question: C++
Contact:

Re: Compiler errors with first use of wxCrafter

Post by root »

That did it. Thank you, eranif. The last thing I have to conquer is setting up wxSQLite3. I haven't found any good information on how to set that up in CodeLite (or even C::B), but once I get that out of the way, I'll be good to go. Again, thank you so much for time and patience.
Win X Pro / CodeLite 14.0 / wxCrafter 2.9 / wxWidgets-3.1.4 / MinGW-10.2.0

Linux Mint 20.0 / CodeLite 14.0 / wxCrafter 2.9 / wxWidgets-3.0 & 3.1.4 / GCC-9.2.0
Post Reply