You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi there,
We're working on our own little piece of C code involving the UV event loop and getdns.
In v1.5.2, building getdns with libtoolize -ci; autoreconf -fi; ./configure --with-libuv; make produces a shared library with the getdns_extension_set_libuv_loop symbol exported.
In v1.6.0, cmake -DBUILD_LIBUV=ON .; make produces a shared library without getdns_extension_set_libuv_loop. Needless to say that after compiling our usual code (with -lgetdns_ex_uv, why the change of name by the way?), we get an (un)expected undefined reference for getdns_extension_set_libuv_loop.
Did we miss something while building the library? Thanks for any help you could provide!
Ps: system is a fresh install of Ubuntu 18.04 LTS.
* (HEAD detached at v1.5.2)
develop
U __assert_fail
w __cxa_finalize
U getdns_context_set_eventloop
0000000000000dc0 T getdns_extension_set_libuv_loop
w __gmon_start__
w _ITM_deregisterTMCloneTable
w _ITM_registerTMCloneTable
% git branch; nm -D libgetdns_ex_uv.so
* (HEAD detached at v1.6.0)
develop
U __assert_fail
w __cxa_finalize
U getdns_context_set_eventloop
w __gmon_start__
w _ITM_deregisterTMCloneTable
w _ITM_registerTMCloneTable
U plain_mem_funcs_user_arg
U priv_getdns_context_mf
The text was updated successfully, but these errors were encountered:
Hi there,
We're working on our own little piece of C code involving the UV event loop and getdns.
In v1.5.2, building getdns with
libtoolize -ci; autoreconf -fi; ./configure --with-libuv; make
produces a shared library with the getdns_extension_set_libuv_loop symbol exported.In v1.6.0,
cmake -DBUILD_LIBUV=ON .; make
produces a shared library without getdns_extension_set_libuv_loop. Needless to say that after compiling our usual code (with -lgetdns_ex_uv, why the change of name by the way?), we get an (un)expected undefined reference for getdns_extension_set_libuv_loop.Did we miss something while building the library? Thanks for any help you could provide!
Ps: system is a fresh install of Ubuntu 18.04 LTS.
% git branch; nm -D ./src/.libs/libgetdns_ext_uv.so
% git branch; nm -D libgetdns_ex_uv.so
The text was updated successfully, but these errors were encountered: