Link problem with Sockets

Do you have a question about makefiles, a compiler or IDE you are using and need to know how to set it up for wxWidgets or why it doesn't compile but other IDE's do ? Post your questions here.
Post Reply
AndrzejB
Earned some good credits
Earned some good credits
Posts: 105
Joined: Sun Nov 29, 2015 12:46 pm

Link problem with Sockets

Post by AndrzejB »

I try socket sample, but library libwx_gtk3u_socket-3.1.a not found
Next, I call ../configure with --enable-sockets and call make, but nothing helps
User avatar
doublemax
Moderator
Moderator
Posts: 19115
Joined: Fri Apr 21, 2006 8:03 pm
Location: $FCE2

Re: Link problem with Sockets

Post by doublemax »

Code: Select all

ibrary libwx_gtk3u_socket-3.1.a
From where did you get that library name? There is no *socket* library in wxWidgets. The socket stuff is in *net*. E.g. libwxbase31u_net.a
Use the source, Luke!
ONEEYEMAN
Part Of The Furniture
Part Of The Furniture
Posts: 7459
Joined: Sat Apr 16, 2005 7:22 am
Location: USA, Ukraine

Re: Link problem with Sockets

Post by ONEEYEMAN »

Hi,
You should check the documentation - every class has a reference to the library it belongs to.
Or try to build appropriate sample and see what libraries are linked.

But you should start with the documentation.

Thank you.
Post Reply