TokTok / c-toxcore

The future of online communications.
https://tox.chat
GNU General Public License v3.0
2.21k stars 280 forks source link

feat: Update and improve the Windows cross-compilation #2713

Closed nurupo closed 3 months ago

nurupo commented 4 months ago

Wanted to bump the toxcore dependencies for Windows cross-compilation before the release, but ended up changing a lot more things.


This change is Reviewable

codecov[bot] commented 4 months ago

Codecov Report

All modified and coverable lines are covered by tests :white_check_mark:

Project coverage is 73.11%. Comparing base (ed2b60c) to head (b3c3c49).

Additional details and impacted files ```diff @@ Coverage Diff @@ ## master #2713 +/- ## ========================================== + Coverage 73.06% 73.11% +0.05% ========================================== Files 149 149 Lines 30517 30517 ========================================== + Hits 22297 22313 +16 + Misses 8220 8204 -16 ```

:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.

nurupo commented 4 months ago

The CI is kind of weird, it only partially tests the changes I have done to the Windows cross-compilation docker in this PR.

docker/docker-win32 and docker/docker-win64 build the docker image from this PR (i.e. they build sodium, opus and vpx), but nothing tests building toxcore using the resulting image.

ci/build-windows (32) and ci/build-windows (64) do build toxcore using a resulting image, but they use an older image from Dockerhub, instead of testing the one modified in the PR :\

Would be nice if docker/docker-win32/docker/docker-win64 also built toxcore using the current image.

Anyway, I'm experiencing an issue locally where wine crashes when creating a 64-bit prefix, so the autotests for the 64-bit build of toxcore do not run. Wanted to see that failure happen on the CI, but alas CI uses a pre-PR image where everything works. This actually fails the entire build, not just autotests, as the wine prefix creation is done within bash's -e option. Of course that's if you enable testing, which is not done by default. The wine crash seems to be some common bug that many are reporting, but there is no workaround for it, as far as I can see. Will try installing a newer version of wine from wine's own 3rd party Debian repository and see if that works. Here is the crash output if anyone is curious:

+ '[' true = true ']'
+ rm -rf /root/.wine
+ '[' x86_64 = i686 ']'
+ export WINEARCH=win64
+ WINEARCH=win64
+ winecfg
wine: created the configuration directory '/root/.wine'
002c:err:module:import_dll Loading library zlib1.dll (which is needed by L"C:\\windows\\system32\\user32.dll") failed (error c000007b).
0040:err:module:import_dll Loading library zlib1.dll (which is needed by L"C:\\windows\\system32\\user32.dll") failed (error c000007b).
002c:err:module:DelayLoadFailureHook failed to delay load user32.dll.CreateDialogParamW
wine: Call from 000000007B013D7E to unimplemented function user32.dll.CreateDialogParamW, aborting
wine: Unimplemented function user32.dll.CreateDialogParamW called at address 000000007B013D7E (thread 002c), starting debugger...
0040:err:module:import_dll Library user32.dll (which is needed by L"C:\\windows\\system32\\rundll32.exe") not found
0040:err:module:LdrInitializeThunk Importing dlls for L"C:\\windows\\system32\\rundll32.exe" failed, status c0000135
002c:err:seh:start_debugger Couldn't start debugger L"winedbg --auto 40 48" (2)
Read the Wine Developers Guide on how to set up winedbg or another debugger
wine: could not load kernel32.dll, status c0000135
nurupo commented 4 months ago
-set_target_properties(toxcore_shared PROPERTIES OUTPUT_NAME toxcore)
+set_target_properties(toxcore_shared PROPERTIES OUTPUT_NAME toxcore WINDOWS_EXPORT_ALL_SYMBOLS ON)

@robinlinden that property seems to do nothing on MinGW on Linux. I did a tree on the build dir, as well as the install prefix, and I don't see any .def file.

Some post suggests that CMAKE_SUPPORT_WINDOWS_EXPORT_ALL_SYMBOLS should be set for it to work on Linux MinGW,

but then I get this error. ``` [ 30%] Linking C shared library libtoxcore.dll /usr/bin/cmake -E cmake_link_script CMakeFiles/toxcore_shared.dir/link.txt --verbose=1 /usr/bin/cmake -E __create_def CMakeFiles/toxcore_shared.dir/exports.def CMakeFiles/toxcore_shared.dir/exports.def.objs --nm=/usr/bin/i686-w64-mingw32-nm /usr/bin/cmake -E rm -f CMakeFiles/toxcore_shared.dir/objects.a /usr/bin/i686-w64-mingw32-ar qc CMakeFiles/toxcore_shared.dir/objects.a @CMakeFiles/toxcore_shared.dir/objects1 /usr/bin/i686-w64-mingw32-gcc -O3 -D_FORTIFY_SOURCE=3 -D_GLIBCXX_ASSERTIONS -ftrivial-auto-var-init=zero -fPIE -pie -fstack-protector-strong -fstack-clash-protection -fcf-protection=full -O3 -DNDEBUG -Wl,--version-script,/tmp/toxcore/build/toxcore.ld -static CMakeFiles/toxcore_shared.dir/exports.def -shared -o libtoxcore.dll -Wl,--out-implib,libtoxcore.dll.a -Wl,--major-image-version,2,--minor-image-version,18 -Wl,--whole-archive CMakeFiles/toxcore_shared.dir/objects.a -Wl,--no-whole-archive @CMakeFiles/toxcore_shared.dir/linkLibs.rsp /usr/bin/i686-w64-mingw32-ld: cannot export _ac_iterate: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _ac_kill: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _ac_new: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _ac_queue_message: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _ac_reconfigure_encoder: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _accept_crypto_connection: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _add_av_groupchat: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _add_groupchat: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _add_tcp_number_relay_connection: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _add_tcp_relay: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _add_tcp_relay_connection: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _add_tcp_relay_global: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _add_tcp_relay_peer: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _add_to_list: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _addr_parse_ip: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _addr_resolve_or_parse_ip: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _addto_lists: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _announce_get_bucketnum: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _announce_on_stored: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _announce_response_of_request_type: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _announce_set_synch_offset: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _announce_store_data: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _bin_pack_array: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _bin_pack_bin: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _bin_pack_bin_b: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _bin_pack_bin_marker: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _bin_pack_bool: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _bin_pack_ip_port: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _bin_pack_nil: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _bin_pack_obj: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _bin_pack_obj_array: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _bin_pack_obj_array_b: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _bin_pack_obj_array_b_size: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _bin_pack_obj_size: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _bin_pack_u08: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _bin_pack_u08_b: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _bin_pack_u16: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _bin_pack_u16_b: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _bin_pack_u32: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _bin_pack_u32_b: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _bin_pack_u64: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _bin_pack_u64_b: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _bin_unpack_array: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _bin_unpack_array_fixed: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _bin_unpack_bin: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _bin_unpack_bin_b: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _bin_unpack_bin_fixed: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _bin_unpack_bin_max: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _bin_unpack_bin_size: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _bin_unpack_bool: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _bin_unpack_nil: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _bin_unpack_obj: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _bin_unpack_u08: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _bin_unpack_u08_b: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _bin_unpack_u16: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _bin_unpack_u16_b: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _bin_unpack_u32: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _bin_unpack_u32_b: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _bin_unpack_u64: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _bin_unpack_u64_b: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _bind_to_port: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _bit_by_bit_cmp: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _bs_list_add: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _bs_list_find: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _bs_list_free: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _bs_list_init: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _bs_list_remove: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _bwc_add_lost: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _bwc_add_recv: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _bwc_kill: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _bwc_new: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _callback_file_control: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _callback_file_data: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _callback_file_reqchunk: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _callback_file_sendrequest: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _callback_friendrequest: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _callback_groupchat_delete: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _callback_groupchat_peer_delete: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _callback_groupchat_peer_new: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _check_timed_auth: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cleanup_gca: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _closelist_nodes: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_init: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_mp_version: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_object_as_array: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_object_as_bin: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_object_as_bool: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_object_as_char: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_object_as_ext: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_object_as_int: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_object_as_long: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_object_as_map: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_object_as_short: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_object_as_sinteger: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_object_as_str: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_object_as_uchar: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_object_as_uint: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_object_as_uinteger: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_object_as_ulong: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_object_as_ushort: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_object_is_array: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_object_is_bin: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_object_is_bool: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_object_is_char: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_object_is_double: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_object_is_ext: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_object_is_float: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_object_is_int: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_object_is_long: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_object_is_map: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_object_is_nil: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_object_is_short: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_object_is_sinteger: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_object_is_str: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_object_is_uchar: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_object_is_uint: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_object_is_uinteger: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_object_is_ulong: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_object_is_ushort: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_object_to_bin: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_object_to_str: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_read_array: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_read_bin: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_read_bin_size: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_read_bool: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_read_bool_as_u8: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_read_char: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_read_ext: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_read_ext16: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_read_ext16_marker: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_read_ext32: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_read_ext32_marker: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_read_ext8: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_read_ext8_marker: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_read_ext_marker: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_read_fixext1: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_read_fixext16: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_read_fixext16_marker: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_read_fixext1_marker: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_read_fixext2: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_read_fixext2_marker: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_read_fixext4: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_read_fixext4_marker: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_read_fixext8: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_read_fixext8_marker: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_read_int: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_read_integer: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_read_long: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_read_map: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_read_nfix: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_read_nil: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_read_object: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_read_pfix: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_read_s16: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_read_s32: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_read_s64: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_read_s8: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_read_sfix: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_read_short: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_read_str: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_read_str_size: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_read_u16: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_read_u32: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_read_u64: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_read_u8: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_read_uchar: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_read_ufix: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_read_uint: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_read_uinteger: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_read_ulong: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_read_ushort: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_skip_object: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_skip_object_flat: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_skip_object_no_limit: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_strerror: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_uint: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_version: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_write_array: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_write_array16: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_write_array32: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_write_bin: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_write_bin16: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_write_bin16_marker: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_write_bin32: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_write_bin32_marker: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_write_bin8: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_write_bin8_marker: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_write_bin_marker: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_write_bool: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_write_ext: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_write_ext16: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_write_ext16_marker: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_write_ext32: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_write_ext32_marker: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_write_ext8: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_write_ext8_marker: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_write_ext_marker: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_write_false: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_write_fixarray: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_write_fixext1: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_write_fixext16: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_write_fixext16_marker: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_write_fixext1_marker: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_write_fixext2: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_write_fixext2_marker: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_write_fixext4: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_write_fixext4_marker: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_write_fixext8: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_write_fixext8_marker: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_write_fixmap: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_write_fixstr: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_write_fixstr_marker: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_write_integer: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_write_map: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_write_map16: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_write_map32: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_write_nfix: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_write_nil: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_write_object: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_write_object_v4: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_write_pfix: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_write_s16: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_write_s32: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_write_s64: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_write_s8: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_write_sfix: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_write_str: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_write_str16: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_write_str16_marker: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_write_str32: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_write_str32_marker: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_write_str8: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_write_str8_marker: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_write_str_marker: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_write_str_marker_v4: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_write_str_v4: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_write_true: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_write_u16: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_write_u32: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_write_u64: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_write_u8: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_write_u8_as_bool: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_write_ufix: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cmp_write_uinteger: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _conference_by_id: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _conference_get_id: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _conferences_load_state_section: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _conferences_save: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _conferences_size: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _connection_data_handler: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _connection_lossy_data_handler: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _connection_status_handler: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _copy_chatlist: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _copy_connected_tcp_relays: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _copy_connected_tcp_relays_index: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _copy_friendlist: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _count_chatlist: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _count_friendlist: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _create_announce_request: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _create_data_request: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _create_extended_keypair: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _create_forward_chain_packet: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _create_gca_announce_request: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _create_onion_packet: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _create_onion_packet_tcp: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _create_onion_path: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _create_recursive_mutex: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _create_request: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _crypto_connection_status: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _crypto_derive_public_key: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _crypto_hmac: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _crypto_hmac_verify: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _crypto_kill: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _crypto_memlock: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _crypto_memunlock: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _crypto_memzero: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _crypto_new_keypair: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _crypto_num_free_sendqueue_slots: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _crypto_run_interval: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _crypto_sha256: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _crypto_sha256_eq: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _crypto_sha512: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _crypto_sha512_eq: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _crypto_signature_create: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _crypto_signature_verify: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cryptopacket_registerhandler: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _cryptpacket_received: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _current_time_monotonic: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _custom_lossless_packet_registerhandler: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _custom_lossy_packet_registerhandler: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _data_checksum: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _decrypt_data: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _decrypt_data_symmetric: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _del_groupchat: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _dht_addfriend: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _dht_bootstrap: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _dht_bootstrap_from_address: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _dht_callback_get_nodes_response: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _dht_connect_after_load: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _dht_create_packet: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _dht_delfriend: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _dht_friend_client: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _dht_friend_public_key: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _dht_get_close_client: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _dht_get_close_clientlist: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _dht_get_friend: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _dht_get_friend_public_key: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _dht_get_net: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _dht_get_num_closelist: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _dht_get_num_closelist_announce_capable: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _dht_get_num_friends: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _dht_get_ping: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _dht_get_self_public_key: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _dht_get_self_secret_key: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _dht_get_shared_key_recv: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _dht_get_shared_key_sent: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _dht_getfriendip: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _dht_getnodes: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _dht_isconnected: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _dht_load: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _dht_non_lan_connected: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _dht_save: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _dht_set_self_public_key: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _dht_set_self_secret_key: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _dht_size: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _do_dht: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _do_friend_connections: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _do_gc: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _do_gca: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _do_groupchats: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _do_messenger: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _do_net_crypto: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _do_onion_client: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _do_tcp_connection: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _do_tcp_connections: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _do_tcp_server: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _encrypt_data: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _encrypt_data_symmetric: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _encrypt_precompute: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _file_control: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _file_get_id: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _file_seek: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _forward_chain_packet_size: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _forward_reply: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _forwarding_get_dht: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _forwarding_handler: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _free_uint8_t_pointer_array: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _friend_con_connected: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _friend_conn_get_dht_ip_port: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _friend_conn_get_onion_friendnum: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _friend_connection_callbacks: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _friend_connection_crypt_connection_id: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _friend_connection_lock: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _friend_is_valid: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _friendconn_net_crypto: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _friendreq_init: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _friendreq_kill: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _friendreq_new: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _g_callback_group_connected: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _g_callback_group_invite: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _g_callback_group_message: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _g_callback_group_title: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _g_callback_peer_list_changed: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _g_callback_peer_name: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _g_mono_time: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _gc_accept_invite: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _gc_add_peers_from_announces: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _gc_callback_custom_packet: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _gc_callback_custom_private_packet: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _gc_callback_message: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _gc_callback_moderation: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _gc_callback_nick_change: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _gc_callback_password: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _gc_callback_peer_exit: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _gc_callback_peer_join: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _gc_callback_peer_limit: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _gc_callback_privacy_state: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _gc_callback_private_message: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _gc_callback_rejected: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _gc_callback_self_join: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _gc_callback_status_change: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _gc_callback_topic_change: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _gc_callback_topic_lock: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _gc_callback_voice_state: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _gc_count_groups: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _gc_disconnect_from_group: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _gc_founder_set_max_peers: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _gc_founder_set_password: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _gc_founder_set_privacy_state: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _gc_founder_set_topic_lock: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _gc_founder_set_voice_state: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _gc_get_chat_id: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _gc_get_group: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _gc_get_group_by_public_key: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _gc_get_group_name: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _gc_get_group_name_size: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _gc_get_max_peers: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _gc_get_password: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _gc_get_password_size: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _gc_get_peer_connection_status: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _gc_get_peer_ip_address: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _gc_get_peer_ip_address_size: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _gc_get_peer_nick: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _gc_get_peer_nick_size: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _gc_get_peer_public_key_by_peer_id: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _gc_get_pk_jenkins_hash: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _gc_get_privacy_state: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _gc_get_role: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _gc_get_self_nick: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _gc_get_self_nick_size: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _gc_get_self_peer_id: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _gc_get_self_public_key: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _gc_get_self_role: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _gc_get_self_status: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _gc_get_status: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _gc_get_topic: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _gc_get_topic_lock_state: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _gc_get_topic_size: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _gc_get_voice_state: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _gc_get_wrapped_packet_size: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _gc_group_add: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _gc_group_exit: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _gc_group_is_valid: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _gc_group_join: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _gc_group_load: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _gc_group_save: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _gc_invite_friend: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _gc_kick_peer: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _gc_load_unpack_group: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _gc_peer_id_from_int: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _gc_peer_id_to_int: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _gc_peer_number_is_valid: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _gc_rejoin_group: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _gc_save_pack_group: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _gc_send_custom_packet: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _gc_send_custom_private_packet: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _gc_send_message: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _gc_send_message_ack: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _gc_send_private_message: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _gc_set_ignore: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _gc_set_peer_role: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _gc_set_self_nick: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _gc_set_self_status: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _gc_set_topic: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _gca_add_announce: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _gca_get_announces: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _gca_is_valid_announce: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _gca_onion_init: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _gca_pack_announce: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _gca_pack_announces_list: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _gca_pack_announces_list_size: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _gca_pack_public_announce: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _gca_unpack_announces_list: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _gca_unpack_public_announce: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _gcc_check_recv_array: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _gcc_cleanup: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _gcc_conn_is_direct: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _gcc_copy_tcp_relay: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _gcc_direct_conn_is_possible: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _gcc_encrypt_and_send_lossless_packet: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _gcc_get_array_index: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _gcc_handle_ack: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _gcc_handle_packet_fragment: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _gcc_handle_received_message: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _gcc_ip_port_is_set: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _gcc_make_session_shared_key: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _gcc_mark_for_deletion: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _gcc_peer_cleanup: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _gcc_resend_packets: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _gcc_save_tcp_relay: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _gcc_send_lossless_packet: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _gcc_send_lossless_packet_fragments: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _gcc_send_packet: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _gcc_set_ip_port: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _gcc_set_recv_message_id: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _gcc_set_send_message_id: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _generate_timed_auth: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _get_chat_id: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _get_close_nodes: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _get_conn: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _get_enc_key: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _get_friendcon_public_keys: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _get_gc_connection: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _get_ip4_broadcast: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _get_ip4_loopback: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _get_ip6_broadcast: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _get_ip6_loopback: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _get_nospam: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _get_peer_number_of_enc_pk: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _get_random_tcp_con_number: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _get_random_tcp_conn_ip_port: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _get_random_tcp_onion_conn_number: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _get_real_pk: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _get_sig_pk: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _get_sig_sk: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _getaddress: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _getfriend_conn_id_pk: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _getfriend_id: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _getfriendcon_id: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _getname: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _getself_name: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _group_action_send: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _group_frozen_last_active: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _group_get_object: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _group_get_type: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _group_lossy_packet_registerhandler: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _group_message_send: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _group_not_added: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _group_number_peers: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _group_packet_wrap: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _group_peer_get_object: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _group_peer_pubkey: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _group_peer_set_object: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _group_peername: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _group_peername_size: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _group_peernumber_is_ours: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _group_privacy_state_from_int: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _group_send_audio: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _group_set_max_frozen: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _group_set_object: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _group_title_get: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _group_title_get_size: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _group_title_send: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _group_voice_state_from_int: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _groupchat_av_enabled: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _groupchat_disable_av: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _groupchat_enable_av: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _handle_gc_invite_accepted_packet: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _handle_gc_invite_confirmed_packet: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _handle_gc_lossless_helper: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _handle_request: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _host_to_lendian16: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _host_to_lendian_bytes16: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _host_to_lendian_bytes32: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _host_to_lendian_bytes64: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _id_closest: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _increment_nonce: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _increment_nonce_number: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _invite_friend: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _ip_copy: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _ip_equal: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _ip_init: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _ip_is_lan: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _ip_is_local: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _ip_isset: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _ip_parse_addr: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _ip_port_to_tcp_connections_number: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _ip_reset: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _ipport_cmp_handler: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _ipport_copy: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _ipport_equal: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _ipport_isset: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _ipport_reset: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _ipport_self_copy: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _ipv6_ipv4_in_v6: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _is_power_of_2: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _jenkins_one_at_a_time_hash: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _join_av_groupchat: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _join_groupchat: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _kill_announcements: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _kill_dht: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _kill_dht_groupchats: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _kill_forwarding: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _kill_friend_connection: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _kill_friend_connections: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _kill_gca: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _kill_groupchats: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _kill_messenger: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _kill_net_crypto: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _kill_networking: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _kill_onion: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _kill_onion_announce: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _kill_onion_client: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _kill_sock: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _kill_tcp_connection: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _kill_tcp_connection_to: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _kill_tcp_connections: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _kill_tcp_relay_connection: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _kill_tcp_server: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _lan_discovery_init: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _lan_discovery_kill: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _lan_discovery_send: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _lendian_bytes_to_host16: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _lendian_bytes_to_host32: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _lendian_bytes_to_host64: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _lendian_to_host16: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _load_secret_key: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _logger_abort: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _logger_callback_log: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _logger_kill: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _logger_new: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _logger_write: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _m_addfriend: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _m_addfriend_norequest: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _m_callback_conference_invite: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _m_callback_connectionstatus: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _m_callback_connectionstatus_internal_av: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _m_callback_core_connection: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _m_callback_friendmessage: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _m_callback_friendrequest: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _m_callback_group_invite: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _m_callback_msi_packet: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _m_callback_namechange: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _m_callback_read_receipt: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _m_callback_rtp_packet: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _m_callback_statusmessage: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _m_callback_typingchange: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _m_callback_userstatus: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _m_copy_self_statusmessage: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _m_copy_statusmessage: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _m_create_group_connection: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _m_delfriend: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _m_friend_exists: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _m_get_friend_connectionstatus: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _m_get_istyping: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _m_get_last_online: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _m_get_name_size: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _m_get_self_name_size: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _m_get_self_statusmessage_size: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _m_get_self_userstatus: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _m_get_statusmessage_size: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _m_get_userstatus: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _m_is_receiving_file: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _m_kill_group_connection: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _m_msi_packet: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _m_register_state_plugin: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _m_send_custom_lossy_packet: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _m_send_message_generic: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _m_set_statusmessage: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _m_set_userstatus: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _m_set_usertyping: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _max_s16: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _max_s32: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _max_s64: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _max_speed_reached: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _max_u08: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _max_u16: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _max_u32: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _max_u64: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _mem_alloc: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _mem_balloc: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _mem_delete: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _mem_valloc: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _mem_vrealloc: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _memdup: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _memeq: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _memzero: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _messenger_load_state_section: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _messenger_run_interval: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _messenger_save: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _messenger_size: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _min_s16: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _min_s32: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _min_s64: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _min_u16: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _min_u32: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _min_u64: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _mod_list_add_entry: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _mod_list_cleanup: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _mod_list_get_data_hash: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _mod_list_make_hash: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _mod_list_pack: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _mod_list_packed_size: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _mod_list_remove_entry: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _mod_list_remove_index: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _mod_list_unpack: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _mod_list_verify_sig_pk: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _mono_time_free: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _mono_time_get: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _mono_time_get_ms: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _mono_time_is_timeout: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _mono_time_new: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _mono_time_set_current_time_callback: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _mono_time_update: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _msi_answer: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _msi_callback_capabilities: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _msi_callback_end: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _msi_callback_error: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _msi_callback_invite: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _msi_callback_peertimeout: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _msi_callback_start: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _msi_change_capabilities: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _msi_hangup: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _msi_invite: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _msi_kill: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _msi_new: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _nc_dht_pk_callback: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _nc_get_dht: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _nc_get_self_public_key: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _nc_get_self_secret_key: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _nc_get_tcp_c: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _net_accept: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _net_connect: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _net_error: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _net_family: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _net_family_ipv4: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _net_family_ipv6: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _net_family_is_ipv4: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _net_family_is_ipv6: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _net_family_is_tcp_client: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _net_family_is_tcp_ipv4: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _net_family_is_tcp_ipv6: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _net_family_is_tcp_server: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _net_family_is_tox_tcp_ipv4: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _net_family_is_tox_tcp_ipv6: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _net_family_is_unspec: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _net_family_tcp_client: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _net_family_tcp_ipv4: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _net_family_tcp_ipv6: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _net_family_tcp_server: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _net_family_tox_tcp_ipv4: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _net_family_tox_tcp_ipv6: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _net_family_unspec: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _net_freeipport: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _net_getipport: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _net_htonl: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _net_htons: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _net_invalid_socket: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _net_ip_ntoa: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _net_kill_strerror: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _net_listen: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _net_new_strerror: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _net_ntohl: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _net_ntohs: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _net_pack_bool: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _net_pack_u16: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _net_pack_u32: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _net_pack_u64: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _net_port: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _net_recv: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _net_send: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _net_socket: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _net_socket_data_recv_buffer: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _net_socket_from_native: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _net_socket_to_native: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _net_unpack_bool: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _net_unpack_u16: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _net_unpack_u32: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _net_unpack_u64: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _networking_poll: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _networking_registerhandler: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _new_announcements: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _new_connection_handler: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _new_crypto_connection: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _new_dht: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _new_dht_groupchats: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _new_filesender: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _new_forwarding: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _new_friend_connection: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _new_friend_connections: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _new_gca_list: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _new_groupchats: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _new_hmac_key: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _new_keys: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _new_messenger: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _new_net_crypto: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _new_networking_ex: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _new_networking_no_udp: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _new_onion: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _new_onion_announce: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _new_onion_client: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _new_symmetric_key: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _new_tcp_connection: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _new_tcp_connection_to: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _new_tcp_connections: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _new_tcp_server: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _node_addable_to_close_list: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _onion_add_bs_path_node: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _onion_addfriend: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _onion_announce_entry_public_key: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _onion_announce_entry_set_time: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _onion_announce_extra_data_callback: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _onion_backup_nodes: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _onion_connection_status: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _onion_delfriend: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _onion_dht_pk_callback: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _onion_friend_get_gc_public_key: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _onion_friend_get_gc_public_key_num: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _onion_friend_is_groupchat: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _onion_friend_num: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _onion_friend_set_gc_data: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _onion_friend_set_gc_public_key: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _onion_get_dht: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _onion_get_friend: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _onion_get_friend_count: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _onion_get_net_crypto: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _onion_getfriend_dht_pubkey: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _onion_getfriendip: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _onion_group_announce_register: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _onion_path_to_nodes: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _onion_response_handler: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _onion_send_1: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _onion_set_friend_dht_pubkey: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _onion_set_friend_online: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _oniondata_registerhandler: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _oob_data_handler: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _os_memory: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _os_network: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _os_random: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _pack_extended_public_key: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _pack_extended_secret_key: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _pack_gc_saved_peers: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _pack_ip_port: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _pack_nodes: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _packed_node_size: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _peer_add: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _ping_add: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _ping_array_add: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _ping_array_check: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _ping_array_kill: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _ping_array_new: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _ping_iterate: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _ping_kill: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _ping_new: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _ping_send_request: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _pk_copy: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _pk_equal: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _public_key_valid: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _randfriends_nodes: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _random_bytes: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _random_nonce: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _random_range_u32: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _random_u08: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _random_u16: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _random_u32: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _random_u64: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _rb_data: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _rb_empty: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _rb_full: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _rb_kill: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _rb_new: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _rb_read: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _rb_size: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _rb_write: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _read_packet_tcp_secure_connection: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _read_tcp_packet: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _recv_tcp_relay_handler: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _remove_request_received: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _route_packet: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _route_to_friend: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _routing_data_handler: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _routing_response_handler: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _routing_status_handler: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _rtp_allow_receiving: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _rtp_header_pack: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _rtp_header_unpack: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _rtp_kill: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _rtp_new: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _rtp_send_data: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _rtp_stop_receiving: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _sanctions_creds_pack: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _sanctions_creds_unpack: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _sanctions_list_add_entry: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _sanctions_list_check_integrity: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _sanctions_list_cleanup: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _sanctions_list_entry_exists: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _sanctions_list_is_observer: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _sanctions_list_make_creds: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _sanctions_list_make_entry: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _sanctions_list_pack: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _sanctions_list_packed_size: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _sanctions_list_remove_observer: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _sanctions_list_replace_sig: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _sanctions_list_unpack: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _save_keys: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _send_announce_request: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _send_conference_invite_packet: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _send_custom_lossless_packet: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _send_data: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _send_data_request: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _send_disconnect_request: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _send_file_data: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _send_forward_request: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _send_forward_request_tcp: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _send_forwarding: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _send_friend_request_packet: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _send_group_invite_packet: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _send_group_lossy_packet: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _send_lossy_cryptpacket: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _send_name_all_groups: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _send_onion_data: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _send_onion_request: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _send_onion_response: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _send_oob_packet: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _send_packet: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _send_packet_tcp_connection: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _send_pending_data: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _send_pending_data_nonpriority: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _send_routing_request: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _send_tcp_forward_request: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _send_tcp_onion_request: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _sendpacket: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _set_announce_node: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _set_callback_forward_reply: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _set_callback_forwarded_request: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _set_callback_forwarded_response: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _set_callback_handle_recv_1: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _set_dht_temp_pk: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _set_direct_ip_port: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _set_filter_function: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _set_forwarding_packet_tcp_connection_callback: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _set_friend_request_callback: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _set_global_status_callback: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _set_nospam: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _set_onion_packet_tcp_connection_callback: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _set_oob_packet_tcp_connection_callback: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _set_packet_tcp_connection_callback: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _set_sig_pk: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _set_socket_dualstack: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _set_socket_nonblock: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _set_socket_nosigpipe: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _set_socket_reuseaddr: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _set_tcp_connection_number: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _set_tcp_connection_to_status: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _set_tcp_onion_status: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _setfriendname: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _setname: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _shared_key_cache_free: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _shared_key_cache_lookup: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _shared_key_cache_new: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _sock_valid: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _state_load: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _state_write_section_header: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tcp_con_custom_object: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tcp_con_custom_uint: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tcp_con_ip_port: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tcp_con_public_key: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tcp_con_set_custom_object: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tcp_con_set_custom_uint: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tcp_con_status: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tcp_connected_relays_count: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tcp_connection_to_online_tcp_relays: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tcp_connections_count: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tcp_connections_number_to_ip_port: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tcp_connections_public_key: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tcp_copy_connected_relays: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tcp_copy_connected_relays_index: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tcp_get_random_conn_ip_port: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tcp_relay_is_valid: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tcp_send_forward_request: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tcp_send_onion_request: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tcp_send_oob_packet: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tcp_send_oob_packet_using_relay: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tcp_server_listen_count: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tcp_server_public_key: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_add_tcp_relay: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_address_size: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_bootstrap: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_callback_conference_connected: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_callback_conference_invite: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_callback_conference_message: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_callback_conference_peer_list_changed: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_callback_conference_peer_name: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_callback_conference_title: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_callback_dht_get_nodes_response: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_callback_file_chunk_request: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_callback_file_recv: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_callback_file_recv_chunk: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_callback_file_recv_control: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_callback_friend_connection_status: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_callback_friend_lossless_packet: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_callback_friend_lossless_packet_per_pktid: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_callback_friend_lossy_packet: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_callback_friend_lossy_packet_per_pktid: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_callback_friend_message: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_callback_friend_name: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_callback_friend_read_receipt: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_callback_friend_request: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_callback_friend_status: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_callback_friend_status_message: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_callback_friend_typing: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_callback_group_custom_packet: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_callback_group_custom_private_packet: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_callback_group_invite: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_callback_group_join_fail: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_callback_group_message: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_callback_group_moderation: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_callback_group_password: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_callback_group_peer_exit: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_callback_group_peer_join: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_callback_group_peer_limit: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_callback_group_peer_name: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_callback_group_peer_status: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_callback_group_privacy_state: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_callback_group_private_message: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_callback_group_self_join: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_callback_group_topic: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_callback_group_topic_lock: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_callback_group_voice_state: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_callback_self_connection_status: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_conference_by_id: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_conference_by_uid: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_conference_delete: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_conference_get_chatlist: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_conference_get_chatlist_size: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_conference_get_id: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_conference_get_title: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_conference_get_title_size: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_conference_get_type: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_conference_get_uid: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_conference_id_size: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_conference_invite: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_conference_join: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_conference_new: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_conference_offline_peer_count: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_conference_offline_peer_get_last_active: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_conference_offline_peer_get_name: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_conference_offline_peer_get_name_size: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_conference_offline_peer_get_public_key: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_conference_peer_count: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_conference_peer_get_name: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_conference_peer_get_name_size: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_conference_peer_get_public_key: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_conference_peer_number_is_ours: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_conference_send_message: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_conference_set_max_offline: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_conference_set_title: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_conference_type_pack: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_conference_type_to_string: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_conference_type_unpack: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_conference_uid_size: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_connection_pack: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_connection_to_string: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_connection_unpack: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_default_system: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_dht_get_nodes: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_dht_get_num_closelist: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_dht_get_num_closelist_announce_capable: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_dht_node_ip_string_size: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_dht_node_public_key_size: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_dispatch_free: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_dispatch_invoke: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_dispatch_new: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_err_bootstrap_to_string: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_err_conference_by_id_to_string: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_err_conference_by_uid_to_string: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_err_conference_delete_to_string: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_err_conference_get_type_to_string: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_err_conference_invite_to_string: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_err_conference_join_to_string: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_err_conference_new_to_string: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_err_conference_peer_query_to_string: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_err_conference_send_message_to_string: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_err_conference_set_max_offline_to_string: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_err_conference_title_to_string: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_err_file_control_to_string: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_err_file_get_to_string: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_err_file_seek_to_string: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_err_file_send_chunk_to_string: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_err_file_send_to_string: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_err_friend_add_to_string: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_err_friend_by_public_key_to_string: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_err_friend_custom_packet_to_string: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_err_friend_delete_to_string: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_err_friend_get_last_online_to_string: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_err_friend_get_public_key_to_string: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_err_friend_query_to_string: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_err_friend_send_message_to_string: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_err_get_port_to_string: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_err_group_disconnect_to_string: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_err_group_invite_accept_to_string: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_err_group_invite_friend_to_string: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_err_group_is_connected_to_string: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_err_group_join_to_string: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_err_group_kick_peer_to_string: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_err_group_leave_to_string: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_err_group_new_to_string: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_err_group_peer_query_to_string: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_err_group_reconnect_to_string: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_err_group_self_name_set_to_string: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_err_group_self_query_to_string: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_err_group_self_status_set_to_string: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_err_group_send_custom_packet_to_string: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_err_group_send_custom_private_packet_to_string: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_err_group_send_message_to_string: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_err_group_send_private_message_to_string: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_err_group_set_ignore_to_string: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_err_group_set_password_to_string: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_err_group_set_peer_limit_to_string: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_err_group_set_privacy_state_to_string: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_err_group_set_role_to_string: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_err_group_set_topic_lock_to_string: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_err_group_set_voice_state_to_string: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_err_group_state_query_to_string: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_err_group_topic_set_to_string: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_err_new_to_string: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_err_options_new_to_string: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_err_set_info_to_string: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_err_set_typing_to_string: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_conference_connected_free: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_conference_connected_get_conference_number: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_conference_connected_new: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_conference_connected_pack: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_conference_connected_unpack: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_conference_invite_free: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_conference_invite_get_cookie: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_conference_invite_get_cookie_length: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_conference_invite_get_friend_number: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_conference_invite_get_type: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_conference_invite_new: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_conference_invite_pack: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_conference_invite_unpack: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_conference_message_free: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_conference_message_get_conference_number: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_conference_message_get_message: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_conference_message_get_message_length: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_conference_message_get_peer_number: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_conference_message_get_type: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_conference_message_new: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_conference_message_pack: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_conference_message_unpack: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_conference_peer_list_changed_free: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_conference_peer_list_changed_get_conference_number: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_conference_peer_list_changed_new: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_conference_peer_list_changed_pack: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_conference_peer_list_changed_unpack: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_conference_peer_name_free: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_conference_peer_name_get_conference_number: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_conference_peer_name_get_name: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_conference_peer_name_get_name_length: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_conference_peer_name_get_peer_number: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_conference_peer_name_new: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_conference_peer_name_pack: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_conference_peer_name_unpack: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_conference_title_free: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_conference_title_get_conference_number: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_conference_title_get_peer_number: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_conference_title_get_title: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_conference_title_get_title_length: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_conference_title_new: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_conference_title_pack: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_conference_title_unpack: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_construct: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_destruct: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_dht_get_nodes_response_free: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_dht_get_nodes_response_get_ip: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_dht_get_nodes_response_get_ip_length: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_dht_get_nodes_response_get_port: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_dht_get_nodes_response_get_public_key: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_dht_get_nodes_response_new: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_dht_get_nodes_response_pack: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_dht_get_nodes_response_unpack: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_file_chunk_request_free: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_file_chunk_request_get_file_number: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_file_chunk_request_get_friend_number: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_file_chunk_request_get_length: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_file_chunk_request_get_position: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_file_chunk_request_new: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_file_chunk_request_pack: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_file_chunk_request_unpack: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_file_recv_chunk_free: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_file_recv_chunk_get_data: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_file_recv_chunk_get_data_length: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_file_recv_chunk_get_file_number: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_file_recv_chunk_get_friend_number: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_file_recv_chunk_get_position: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_file_recv_chunk_new: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_file_recv_chunk_pack: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_file_recv_chunk_unpack: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_file_recv_control_free: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_file_recv_control_get_control: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_file_recv_control_get_file_number: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_file_recv_control_get_friend_number: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_file_recv_control_new: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_file_recv_control_pack: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_file_recv_control_unpack: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_file_recv_free: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_file_recv_get_file_number: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_file_recv_get_file_size: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_file_recv_get_filename: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_file_recv_get_filename_length: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_file_recv_get_friend_number: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_file_recv_get_kind: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_file_recv_new: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_file_recv_pack: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_file_recv_unpack: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_friend_connection_status_free: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_friend_connection_status_get_connection_status: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_friend_connection_status_get_friend_number: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_friend_connection_status_new: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_friend_connection_status_pack: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_friend_connection_status_unpack: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_friend_lossless_packet_free: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_friend_lossless_packet_get_data: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_friend_lossless_packet_get_data_length: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_friend_lossless_packet_get_friend_number: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_friend_lossless_packet_new: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_friend_lossless_packet_pack: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_friend_lossless_packet_unpack: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_friend_lossy_packet_free: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_friend_lossy_packet_get_data: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_friend_lossy_packet_get_data_length: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_friend_lossy_packet_get_friend_number: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_friend_lossy_packet_new: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_friend_lossy_packet_pack: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_friend_lossy_packet_unpack: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_friend_message_free: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_friend_message_get_friend_number: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_friend_message_get_message: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_friend_message_get_message_length: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_friend_message_get_type: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_friend_message_new: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_friend_message_pack: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_friend_message_unpack: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_friend_name_free: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_friend_name_get_friend_number: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_friend_name_get_name: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_friend_name_get_name_length: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_friend_name_new: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_friend_name_pack: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_friend_name_unpack: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_friend_read_receipt_free: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_friend_read_receipt_get_friend_number: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_friend_read_receipt_get_message_id: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_friend_read_receipt_new: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_friend_read_receipt_pack: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_friend_read_receipt_unpack: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_friend_request_free: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_friend_request_get_message: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_friend_request_get_message_length: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_friend_request_get_public_key: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_friend_request_new: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_friend_request_pack: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_friend_request_unpack: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_friend_status_free: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_friend_status_get_friend_number: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_friend_status_get_status: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_friend_status_message_free: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_friend_status_message_get_friend_number: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_friend_status_message_get_message: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_friend_status_message_get_message_length: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_friend_status_message_new: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_friend_status_message_pack: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_friend_status_message_unpack: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_friend_status_new: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_friend_status_pack: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_friend_status_unpack: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_friend_typing_free: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_friend_typing_get_friend_number: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_friend_typing_get_typing: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_friend_typing_new: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_friend_typing_pack: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_friend_typing_unpack: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_get_conference_connected: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_get_conference_invite: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_get_conference_message: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_get_conference_peer_list_changed: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_get_conference_peer_name: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_get_conference_title: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_get_dht_get_nodes_response: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_get_file_chunk_request: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_get_file_recv: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_get_file_recv_chunk: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_get_file_recv_control: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_get_friend_connection_status: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_get_friend_lossless_packet: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_get_friend_lossy_packet: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_get_friend_message: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_get_friend_name: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_get_friend_read_receipt: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_get_friend_request: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_get_friend_status: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_get_friend_status_message: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_get_friend_typing: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_get_group_custom_packet: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_get_group_custom_private_packet: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_get_group_invite: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_get_group_join_fail: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_get_group_message: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_get_group_moderation: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_get_group_password: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_get_group_peer_exit: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_get_group_peer_join: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_get_group_peer_limit: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_get_group_peer_name: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_get_group_peer_status: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_get_group_privacy_state: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_get_group_private_message: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_get_group_self_join: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_get_group_topic: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_get_group_topic_lock: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_get_group_voice_state: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_get_self_connection_status: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_get_type: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_custom_packet_free: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_custom_packet_get_data: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_custom_packet_get_data_length: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_custom_packet_get_group_number: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_custom_packet_get_peer_id: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_custom_packet_new: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_custom_packet_pack: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_custom_packet_unpack: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_custom_private_packet_free: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_custom_private_packet_get_data: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_custom_private_packet_get_data_length: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_custom_private_packet_get_group_number: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_custom_private_packet_get_peer_id: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_custom_private_packet_new: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_custom_private_packet_pack: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_custom_private_packet_unpack: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_invite_free: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_invite_get_friend_number: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_invite_get_group_name: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_invite_get_group_name_length: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_invite_get_invite_data: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_invite_get_invite_data_length: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_invite_new: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_invite_pack: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_invite_unpack: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_join_fail_free: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_join_fail_get_fail_type: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_join_fail_get_group_number: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_join_fail_new: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_join_fail_pack: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_join_fail_unpack: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_message_free: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_message_get_group_number: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_message_get_message: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_message_get_message_id: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_message_get_message_length: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_message_get_peer_id: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_message_get_type: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_message_new: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_message_pack: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_message_unpack: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_moderation_free: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_moderation_get_group_number: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_moderation_get_mod_type: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_moderation_get_source_peer_id: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_moderation_get_target_peer_id: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_moderation_new: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_moderation_pack: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_moderation_unpack: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_password_free: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_password_get_group_number: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_password_get_password: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_password_get_password_length: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_password_new: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_password_pack: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_password_unpack: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_peer_exit_free: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_peer_exit_get_exit_type: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_peer_exit_get_group_number: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_peer_exit_get_name: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_peer_exit_get_name_length: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_peer_exit_get_part_message: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_peer_exit_get_part_message_length: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_peer_exit_get_peer_id: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_peer_exit_new: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_peer_exit_pack: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_peer_exit_unpack: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_peer_join_free: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_peer_join_get_group_number: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_peer_join_get_peer_id: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_peer_join_new: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_peer_join_pack: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_peer_join_unpack: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_peer_limit_free: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_peer_limit_get_group_number: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_peer_limit_get_peer_limit: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_peer_limit_new: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_peer_limit_pack: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_peer_limit_unpack: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_peer_name_free: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_peer_name_get_group_number: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_peer_name_get_name: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_peer_name_get_name_length: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_peer_name_get_peer_id: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_peer_name_new: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_peer_name_pack: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_peer_name_unpack: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_peer_status_free: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_peer_status_get_group_number: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_peer_status_get_peer_id: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_peer_status_get_status: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_peer_status_new: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_peer_status_pack: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_peer_status_unpack: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_privacy_state_free: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_privacy_state_get_group_number: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_privacy_state_get_privacy_state: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_privacy_state_new: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_privacy_state_pack: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_privacy_state_unpack: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_private_message_free: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_private_message_get_group_number: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_private_message_get_message: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_private_message_get_message_length: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_private_message_get_peer_id: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_private_message_get_type: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_private_message_new: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_private_message_pack: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_private_message_unpack: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_self_join_free: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_self_join_get_group_number: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_self_join_new: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_self_join_pack: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_self_join_unpack: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_topic_free: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_topic_get_group_number: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_topic_get_peer_id: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_topic_get_topic: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_topic_get_topic_length: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_topic_lock_free: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_topic_lock_get_group_number: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_topic_lock_get_topic_lock: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_topic_lock_new: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_topic_lock_pack: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_topic_lock_unpack: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_topic_new: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_topic_pack: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_topic_unpack: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_voice_state_free: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_voice_state_get_group_number: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_voice_state_get_voice_state: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_voice_state_new: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_voice_state_pack: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_group_voice_state_unpack: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_pack: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_self_connection_status_free: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_self_connection_status_get_connection_status: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_self_connection_status_new: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_self_connection_status_pack: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_self_connection_status_unpack: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_type_to_string: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_event_unpack_into: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_events_add: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_events_alloc: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_events_bytes_size: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_events_callback_conference_connected: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_events_callback_conference_invite: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_events_callback_conference_message: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_events_callback_conference_peer_list_changed: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_events_callback_conference_peer_name: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_events_callback_conference_title: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_events_callback_dht_get_nodes_response: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_events_callback_file_chunk_request: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_events_callback_file_recv: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_events_callback_file_recv_chunk: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_events_callback_file_recv_control: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_events_callback_friend_connection_status: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_events_callback_friend_lossless_packet: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_events_callback_friend_lossy_packet: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_events_callback_friend_message: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_events_callback_friend_name: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_events_callback_friend_read_receipt: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_events_callback_friend_request: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_events_callback_friend_status: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_events_callback_friend_status_message: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_events_callback_friend_typing: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_events_callback_group_custom_packet: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_events_callback_group_custom_private_packet: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_events_callback_group_invite: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_events_callback_group_join_fail: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_events_callback_group_message: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_events_callback_group_moderation: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_events_callback_group_password: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_events_callback_group_peer_exit: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_events_callback_group_peer_join: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_events_callback_group_peer_limit: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_events_callback_group_peer_name: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_events_callback_group_peer_status: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_events_callback_group_privacy_state: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_events_callback_group_private_message: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_events_callback_group_self_join: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_events_callback_group_topic: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_events_callback_group_topic_lock: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_events_callback_group_voice_state: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_events_callback_self_connection_status: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_events_equal: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_events_free: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_events_get: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_events_get_bytes: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_events_get_size: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_events_handle_conference_connected: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_events_handle_conference_invite: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_events_handle_conference_message: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_events_handle_conference_peer_list_changed: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_events_handle_conference_peer_name: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_events_handle_conference_title: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_events_handle_dht_get_nodes_response: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_events_handle_file_chunk_request: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_events_handle_file_recv: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_events_handle_file_recv_chunk: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_events_handle_file_recv_control: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_events_handle_friend_connection_status: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_events_handle_friend_lossless_packet: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_events_handle_friend_lossy_packet: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_events_handle_friend_message: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_events_handle_friend_name: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_events_handle_friend_read_receipt: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_events_handle_friend_request: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_events_handle_friend_status: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_events_handle_friend_status_message: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_events_handle_friend_typing: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_events_handle_group_custom_packet: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_events_handle_group_custom_private_packet: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_events_handle_group_invite: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_events_handle_group_join_fail: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_events_handle_group_message: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_events_handle_group_moderation: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_events_handle_group_password: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_events_handle_group_peer_exit: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_events_handle_group_peer_join: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_events_handle_group_peer_limit: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_events_handle_group_peer_name: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_events_handle_group_peer_status: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_events_handle_group_privacy_state: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_events_handle_group_private_message: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_events_handle_group_self_join: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_events_handle_group_topic: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_events_handle_group_topic_lock: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_events_handle_group_voice_state: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_events_handle_self_connection_status: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_events_init: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_events_iterate: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_events_load: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_file_control: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_file_control_pack: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_file_control_to_string: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_file_control_unpack: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_file_get_file_id: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_file_id_length: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_file_seek: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_file_send: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_file_send_chunk: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_friend_add: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_friend_add_norequest: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_friend_by_public_key: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_friend_delete: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_friend_exists: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_friend_get_connection_status: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_friend_get_last_online: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_friend_get_name: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_friend_get_name_size: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_friend_get_public_key: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_friend_get_status: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_friend_get_status_message: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_friend_get_status_message_size: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_friend_get_typing: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_friend_send_lossless_packet: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_friend_send_lossy_packet: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_friend_send_message: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_get_av_object: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_get_salt: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_get_savedata: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_get_savedata_size: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_get_system: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_group_chat_id_size: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_group_disconnect: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_group_exit_type_pack: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_group_exit_type_to_string: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_group_exit_type_unpack: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_group_get_chat_id: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_group_get_name: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_group_get_name_size: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_group_get_number_groups: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_group_get_password: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_group_get_password_size: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_group_get_peer_limit: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_group_get_privacy_state: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_group_get_topic: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_group_get_topic_lock: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_group_get_topic_size: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_group_get_voice_state: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_group_invite_accept: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_group_invite_friend: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_group_is_connected: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_group_join: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_group_join_fail_pack: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_group_join_fail_to_string: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_group_join_fail_unpack: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_group_kick_peer: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_group_leave: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_group_max_custom_lossless_packet_length: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_group_max_custom_lossy_packet_length: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_group_max_group_name_length: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_group_max_message_length: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_group_max_part_length: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_group_max_password_size: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_group_max_topic_length: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_group_mod_event_pack: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_group_mod_event_to_string: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_group_mod_event_unpack: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_group_new: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_group_peer_get_connection_status: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_group_peer_get_ip_address: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_group_peer_get_ip_address_size: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_group_peer_get_name: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_group_peer_get_name_size: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_group_peer_get_public_key: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_group_peer_get_role: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_group_peer_get_status: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_group_peer_ip_string_max_length: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_group_peer_public_key_size: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_group_privacy_state_pack: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_group_privacy_state_to_string: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_group_privacy_state_unpack: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_group_reconnect: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_group_role_to_string: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_group_self_get_name: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_group_self_get_name_size: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_group_self_get_peer_id: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_group_self_get_public_key: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_group_self_get_role: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_group_self_get_status: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_group_self_set_name: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_group_self_set_status: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_group_send_custom_packet: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_group_send_custom_private_packet: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_group_send_message: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_group_send_private_message: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_group_set_ignore: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_group_set_password: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_group_set_peer_limit: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_group_set_privacy_state: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_group_set_role: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_group_set_topic: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_group_set_topic_lock: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_group_set_voice_state: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_group_topic_lock_pack: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_group_topic_lock_to_string: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_group_topic_lock_unpack: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_group_voice_state_pack: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_group_voice_state_to_string: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_group_voice_state_unpack: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_hash: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_hash_length: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_is_data_encrypted: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_iterate: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_iteration_interval: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_kill: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_lock: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_log_level_to_string: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_max_custom_packet_size: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_max_filename_length: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_max_friend_request_length: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_max_hostname_length: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_max_message_length: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_max_name_length: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_max_status_message_length: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_message_type_pack: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_message_type_to_string: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_message_type_unpack: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_new: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_nospam_size: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_options_default: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_options_free: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_options_get_dht_announcements_enabled: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_options_get_end_port: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_options_get_experimental_groups_persistence: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_options_get_experimental_thread_safety: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_options_get_hole_punching_enabled: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_options_get_ipv6_enabled: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_options_get_local_discovery_enabled: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_options_get_log_callback: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_options_get_log_user_data: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_options_get_operating_system: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_options_get_proxy_host: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_options_get_proxy_port: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_options_get_proxy_type: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_options_get_savedata_data: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_options_get_savedata_length: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_options_get_savedata_type: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_options_get_start_port: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_options_get_tcp_port: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_options_get_udp_enabled: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_options_new: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_options_set_dht_announcements_enabled: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_options_set_end_port: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_options_set_experimental_groups_persistence: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_options_set_experimental_thread_safety: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_options_set_hole_punching_enabled: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_options_set_ipv6_enabled: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_options_set_local_discovery_enabled: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_options_set_log_callback: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_options_set_log_user_data: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_options_set_operating_system: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_options_set_proxy_host: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_options_set_proxy_port: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_options_set_proxy_type: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_options_set_savedata_data: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_options_set_savedata_length: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_options_set_savedata_type: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_options_set_start_port: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_options_set_tcp_port: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_options_set_udp_enabled: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_pass_decrypt: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_pass_encrypt: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_pass_encryption_extra_length: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_pass_key_decrypt: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_pass_key_derive: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_pass_key_derive_with_salt: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_pass_key_encrypt: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_pass_key_free: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_pass_key_length: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_pass_salt_length: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_proxy_type_to_string: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_public_key_size: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_savedata_type_to_string: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_secret_key_size: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_self_get_address: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_self_get_connection_status: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_self_get_dht_id: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_self_get_friend_list: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_self_get_friend_list_size: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_self_get_name: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_self_get_name_size: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_self_get_nospam: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_self_get_public_key: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_self_get_secret_key: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_self_get_status: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_self_get_status_message: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_self_get_status_message_size: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_self_get_tcp_port: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_self_get_udp_port: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_self_set_name: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_self_set_nospam: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_self_set_status: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_self_set_status_message: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_self_set_typing: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_set_av_object: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_unlock: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_user_status_pack: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_user_status_to_string: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_user_status_unpack: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_version_is_compatible: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_version_major: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_version_minor: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _tox_version_patch: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _toxav_add_av_groupchat: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _toxav_answer: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _toxav_audio_iterate: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _toxav_audio_iteration_interval: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _toxav_audio_send_frame: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _toxav_audio_set_bit_rate: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _toxav_call: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _toxav_call_control: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _toxav_callback_audio_bit_rate: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _toxav_callback_audio_receive_frame: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _toxav_callback_call: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _toxav_callback_call_state: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _toxav_callback_video_bit_rate: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _toxav_callback_video_receive_frame: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _toxav_get_tox: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _toxav_group_send_audio: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _toxav_groupchat_av_enabled: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _toxav_groupchat_disable_av: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _toxav_groupchat_enable_av: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _toxav_iterate: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _toxav_iteration_interval: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _toxav_join_av_groupchat: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _toxav_kill: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _toxav_new: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _toxav_video_iterate: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _toxav_video_iteration_interval: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _toxav_video_send_frame: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _toxav_video_set_bit_rate: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _unpack_extended_public_key: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _unpack_extended_secret_key: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _unpack_gc_saved_peers: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _unpack_ip_port: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _unpack_nodes: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _vc_iterate: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _vc_kill: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _vc_new: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _vc_queue_message: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _vc_reconfigure_encoder: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _wipe_priority_list: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _write_cryptpacket: symbol not defined /usr/bin/i686-w64-mingw32-ld: cannot export _write_packet_tcp_secure_connection: symbol not defined collect2: error: ld returned 1 exit status gmake[2]: Leaving directory '/tmp/toxcore/build' gmake[2]: *** [CMakeFiles/toxcore_shared.dir/build.make:1749: libtoxcore.dll] Error 1 gmake[1]: *** [CMakeFiles/Makefile2:1018: CMakeFiles/toxcore_shared.dir/all] Error 2 gmake[1]: Leaving directory '/tmp/toxcore/build' gmake: *** [Makefile:146: all] Error 2 ```

I think I will be sticking with the gendef command since it works.

The cmake build has the strict ABI option tuned on, so only the Tox symbols from the Tox public API headers (tox.h, toxav.h, toxencryptsave.h, tox_private.h, etc.) are listed in .def, no internal symbols or those of dependencies.

nurupo commented 4 months ago

Changed to use winehq-stable package from WineHQ's repository, as that fixes the 64-bit Wine prefix creation crash.

Some autotests fail, but that's probably okay. For example, if you set -DUSE_IPV6=OFF, then instead of 8 tests failing and timing out, you get only 2 failing. Furthermore, if you build toxcore with -DCMAKE_BUILD_TYPE=Debug only 1 test fails (apparently that fixes the other test?). That remaining failing test passes on an older version of Wine (8.20 staging) and on a native Windows 10 system, so it seems to be a Wine bug.

Updated the CI to build and run the same Docker image, instead of building it but running an older version from Dockerhub. The CI still pushes the newly built image to Dockerhub. Had to split building and pushing into two steps as buildx doesn't allow two outputs at once https://github.com/docker/buildx/issues/316, so one step stores it locally with the docker daemon -- load: true, and the following step re-uses the image from the local daemon and pushes it to Dockerhub -- push: true (with the third step running the image stored with the local docker daemon).

nurupo commented 4 months ago

Another thing that is probably worth explaining is that I removed the -O3 from toxcore's CFLAGS as -DCMAKE_BUILD_TYPE="Release" already sets that for us so it was redundant, and having -O3 with -DCMAKE_BUILD_TYPE="Debug" (and disabled stripping) was messing the build up -- the resulting binaries ended up having only some debug symbols, gdb was able to tell the exact line number and filename of what the program is currently running, but couldn't show the 10-line code listing. Removing -O3 fixed that. That threw me off for a bit while debugging one of the test failures, thought my gdb was somehow too old to debug the binary or something, but no, I just used -O3 in a debug build.

Green-Sky commented 4 months ago

I feel like calling the ci job just "windows" is misleading since we also have msvc. so "windows-mingw" and "windows-msvc" or similar would be more appropriate.

nurupo commented 4 months ago

@Green-Sky looks good now?

Green-Sky commented 3 months ago

Title contains "WIP"

nurupo commented 3 months ago

code-review/reviewable Pending — 1 of 2 ✓ (iphydf, nurupo, robinlinden)

nurupo commented 3 months ago

nurupo requested review from iphydf and robinlinden 2 minutes ago

That was done by Reviewable, I didn't manually request those. I guess Reviewable really wants @iphydf and @robinlinden to review this PR, even though @iphydf has approved it already.