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:
liedtkeInTUM
2019-12-06 14:27:24 +01:00
committed by Luca Boccassi
parent 51bf2aff35
commit 65d2f1f498
4 changed files with 50 additions and 14 deletions

View File

@@ -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;