STC/Linux : symbol not found in wxGTK-2.9

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
Cursor
Earned some good credits
Earned some good credits
Posts: 120
Joined: Sun Aug 29, 2004 3:09 pm
Location: Grenoble, France
Contact:

STC/Linux : symbol not found in wxGTK-2.9

Post by Cursor »

Hi all.

I have an application which works well with wxGTK-28 and particularly STC. I have intent to convert it to wxGTK-29 and many symbols are not accessible any more.

In effect, I use some internal Scintilla classes (and particulary 'Document') in order to modify texts without any instanced wxStyledTextCtrl.

In wxGTK-28, if you try to list all symbols of wxSTC lib, you can find :

Code: Select all

> nm -DC libwx_gtk2u_stc-2.8.so.0.5.0 | grep Document::
000488e0 T Document::AddMarkSet(int, int)
00045460 T Document::AddWatcher(DocWatcher*, void*)
...
>
And when I try to do the same with wxGTK-29 :

Code: Select all

> nm -DC libwx_gtk2u_stc-2.9.so.0.0.0 | grep Document::
>
But when I list static symbols :

Code: Select all

> nm -C libwx_gtk2u_stc-2.9.so.0.0.0 | grep Document::
00047980 t Document::AddMarkSet(int, int)
00044320 t Document::AddWatcher(DocWatcher*, void*)
...
>
Is anybody known a tip to use such static functions ?
Thanks in advance.
What is little and green, witch go up and down ??
Yoda playing with the force.
Post Reply