mirror of
https://github.com/zeromq/libzmq.git
synced 2025-10-29 12:18:04 +01:00
Problem: if IPC enabled libzmq does not compile when in uwp build (#3747)
* Problem: if IPC enabled libzmq does not compile when in uwp build * Problem 10.0.##### can be valid windows target versions * Problem: No builds are triggered on uwp platform * Problem: epoll is set before UWP platform is checked * Problem: used wrong CMAKE_SYSTEM_NAME specifier * Problem: build tests fails during cmake configure * Use Win32 build step for Win32-uwp platform * Disable compile options that produce warnings that leads to a ci fail * winnt version is set by cmake, no need for redefinition in windows.hpp * Eliminate all warning according Incremental and opt:icf are specified * Prefer to disable opt flags in debug config rather than incremental linking * CMAKE_GENERATOR should not include uwp definition * Add release build with uwp configuration * Problem: pointer potentially uninitialized
This commit is contained in:
committed by
Luca Boccassi
parent
51bf2aff35
commit
65d2f1f498
@@ -383,7 +383,7 @@ void expect_new_client_bounce_fail (char *my_endpoint_,
|
||||
int expected_client_event_,
|
||||
int expected_client_value_)
|
||||
{
|
||||
void *my_client_mon;
|
||||
void *my_client_mon = NULL;
|
||||
TEST_ASSERT_TRUE (client_mon_ == NULL || expected_client_event_ == 0);
|
||||
if (expected_client_event_ != 0)
|
||||
client_mon_ = &my_client_mon;
|
||||
|
||||
Reference in New Issue
Block a user