Page 1 of 1
wxStyledTextCtrl no linked ????
Posted: Thu Feb 24, 2022 12:18 am
by esbva
I think there is a problem with the linking here, I am migrating from codeblock, a wxStyledTextCtrl, from wxWidgets 3.1.5, and it links well with mingw32-g++.exe, not with ld.exe
and in CodeLite, although I changed it from the ToolChain, is still using the ld.exe,,, see the log in the image, any Solution !!!
CodeLite Verision 15.0.0.
wxWidget 3.1.5.-
Re: wxStyledTextCtrl no linked ????
Posted: Fri Feb 25, 2022 10:24 am
by eranif
open your project settings
and change the value under: Linker -> Linker options
so it will look something like this:
Code: Select all
$(shell wx-config --libs std,stc --unicode=yes);
Re: wxStyledTextCtrl no linked ????
Posted: Fri Feb 25, 2022 12:54 pm
by Jarod42
ld.exe is part of the error message, just above, there is the line of linking and it is done with mingw-g++.exe
.
Your issue is missing functions definition (so probably missing link to libraries). Check your linker options.
Re: wxStyledTextCtrl no linked ????
Posted: Fri Mar 11, 2022 11:19 pm
by esbva
Is a Same Error !!!
???????.-
Re: wxStyledTextCtrl no linked ????
Posted: Sat Mar 19, 2022 12:58 pm
by eranif
remove the space from the std, stc
it must be without spaces std,stc