From b98032f6a46072fee9a2bfcbe631b8193ced567d Mon Sep 17 00:00:00 2001 From: Rob Hughes Date: Fri, 24 Apr 2020 11:41:34 +0100 Subject: Fix some Windows build errors: * Cast to correct datatype for Winsock API * Replace non-standard u_int32_t * Add missing link dependency of timelineDecoder on armnn * Don't try to link pthread if the platform doesn't have it * Use abstracted Socket type rather than int * Link to WinSock DLL on windows Change-Id: I9ace4af50257ce1e3da92fb4c452f36775dac973 Signed-off-by: Robert Hughes --- profiling/common/include/NetworkSockets.hpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'profiling/common/include/NetworkSockets.hpp') diff --git a/profiling/common/include/NetworkSockets.hpp b/profiling/common/include/NetworkSockets.hpp index b9e58aac1d..77507644e6 100644 --- a/profiling/common/include/NetworkSockets.hpp +++ b/profiling/common/include/NetworkSockets.hpp @@ -34,6 +34,8 @@ using PollFd = pollfd; using Socket = SOCKET; using PollFd = WSAPOLLFD; +using nfds_t = int; +using socklen_t = int; #define SOCK_CLOEXEC 0 #endif -- cgit v1.2.1