2019-09-28 06:47:20 -07:00
|
|
|
cmake_minimum_required(VERSION 3.4)
|
2021-05-13 23:07:14 -04:00
|
|
|
project(libuv LANGUAGES C)
|
2019-09-28 06:47:20 -07:00
|
|
|
|
2019-10-13 12:39:06 -07:00
|
|
|
cmake_policy(SET CMP0057 NEW) # Enable IN_LIST operator
|
|
|
|
cmake_policy(SET CMP0064 NEW) # Support if (TEST) operator
|
|
|
|
|
|
|
|
list(APPEND CMAKE_MODULE_PATH "${PROJECT_SOURCE_DIR}/cmake")
|
|
|
|
|
2019-09-28 06:47:20 -07:00
|
|
|
include(CMakePackageConfigHelpers)
|
|
|
|
include(CMakeDependentOption)
|
2019-10-13 12:39:06 -07:00
|
|
|
include(CheckCCompilerFlag)
|
2019-09-28 06:47:20 -07:00
|
|
|
include(GNUInstallDirs)
|
|
|
|
include(CTest)
|
|
|
|
|
2019-10-13 12:39:06 -07:00
|
|
|
set(CMAKE_C_VISIBILITY_PRESET hidden)
|
|
|
|
set(CMAKE_C_STANDARD_REQUIRED ON)
|
|
|
|
set(CMAKE_C_EXTENSIONS ON)
|
|
|
|
set(CMAKE_C_STANDARD 90)
|
|
|
|
|
2019-09-28 06:47:20 -07:00
|
|
|
cmake_dependent_option(LIBUV_BUILD_TESTS
|
|
|
|
"Build the unit tests when BUILD_TESTING is enabled and we are the root project" ON
|
|
|
|
"BUILD_TESTING;CMAKE_SOURCE_DIR STREQUAL PROJECT_SOURCE_DIR" OFF)
|
2019-10-13 12:39:06 -07:00
|
|
|
cmake_dependent_option(LIBUV_BUILD_BENCH
|
|
|
|
"Build the benchmarks when building unit tests and we are the root project" ON
|
|
|
|
"LIBUV_BUILD_TESTS" OFF)
|
2018-05-30 13:35:41 +02:00
|
|
|
|
2020-05-13 21:57:07 +08:00
|
|
|
# Qemu Build
|
|
|
|
option(QEMU "build for qemu" OFF)
|
|
|
|
if(QEMU)
|
|
|
|
add_definitions(-D__QEMU__=1)
|
|
|
|
endif()
|
|
|
|
|
2020-09-20 16:53:02 +08:00
|
|
|
option(ASAN "Enable AddressSanitizer (ASan)" OFF)
|
|
|
|
if(ASAN AND CMAKE_C_COMPILER_ID MATCHES "AppleClang|GNU|Clang")
|
|
|
|
add_definitions(-D__ASAN__=1)
|
|
|
|
set (CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG} -fno-omit-frame-pointer -fsanitize=address")
|
2021-03-23 11:24:05 +08:00
|
|
|
set (CMAKE_SHARED_LINKER_FLAGS_DEBUG "${CMAKE_SHARED_LINKER_FLAGS_DEBUG} -fno-omit-frame-pointer -fsanitize=address")
|
|
|
|
set (CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -fno-omit-frame-pointer -fsanitize=address")
|
2020-09-20 16:53:02 +08:00
|
|
|
endif()
|
|
|
|
|
2019-10-13 12:39:06 -07:00
|
|
|
# Compiler check
|
|
|
|
string(CONCAT is-msvc $<OR:
|
|
|
|
$<C_COMPILER_ID:MSVC>,
|
|
|
|
$<STREQUAL:${CMAKE_C_COMPILER_FRONTEND_VARIANT},MSVC>
|
|
|
|
>)
|
|
|
|
|
|
|
|
check_c_compiler_flag(/W4 UV_LINT_W4)
|
2020-04-28 17:22:27 +02:00
|
|
|
check_c_compiler_flag(/wd4100 UV_LINT_NO_UNUSED_PARAMETER_MSVC)
|
|
|
|
check_c_compiler_flag(/wd4127 UV_LINT_NO_CONDITIONAL_CONSTANT_MSVC)
|
|
|
|
check_c_compiler_flag(/wd4201 UV_LINT_NO_NONSTANDARD_MSVC)
|
|
|
|
check_c_compiler_flag(/wd4206 UV_LINT_NO_NONSTANDARD_EMPTY_TU_MSVC)
|
|
|
|
check_c_compiler_flag(/wd4210 UV_LINT_NO_NONSTANDARD_FILE_SCOPE_MSVC)
|
|
|
|
check_c_compiler_flag(/wd4232 UV_LINT_NO_NONSTANDARD_NONSTATIC_DLIMPORT_MSVC)
|
|
|
|
check_c_compiler_flag(/wd4456 UV_LINT_NO_HIDES_LOCAL)
|
|
|
|
check_c_compiler_flag(/wd4457 UV_LINT_NO_HIDES_PARAM)
|
|
|
|
check_c_compiler_flag(/wd4459 UV_LINT_NO_HIDES_GLOBAL)
|
|
|
|
check_c_compiler_flag(/wd4706 UV_LINT_NO_CONDITIONAL_ASSIGNMENT_MSVC)
|
|
|
|
check_c_compiler_flag(/wd4996 UV_LINT_NO_UNSAFE_MSVC)
|
|
|
|
|
2019-10-13 12:39:06 -07:00
|
|
|
check_c_compiler_flag(-Wall UV_LINT_WALL) # DO NOT use this under MSVC
|
|
|
|
|
|
|
|
# TODO: Place these into its own function
|
|
|
|
check_c_compiler_flag(-Wno-unused-parameter UV_LINT_NO_UNUSED_PARAMETER)
|
|
|
|
check_c_compiler_flag(-Wstrict-prototypes UV_LINT_STRICT_PROTOTYPES)
|
|
|
|
check_c_compiler_flag(-Wextra UV_LINT_EXTRA)
|
|
|
|
|
2020-08-13 01:07:44 +08:00
|
|
|
check_c_compiler_flag(/utf-8 UV_LINT_UTF8_MSVC)
|
|
|
|
|
2020-04-28 17:22:27 +02:00
|
|
|
set(lint-no-unused-parameter $<$<BOOL:${UV_LINT_NO_UNUSED_PARAMETER}>:-Wno-unused-parameter>)
|
2019-10-13 12:39:06 -07:00
|
|
|
set(lint-strict-prototypes $<$<BOOL:${UV_LINT_STRICT_PROTOTYPES}>:-Wstrict-prototypes>)
|
|
|
|
set(lint-extra $<$<BOOL:${UV_LINT_EXTRA}>:-Wextra>)
|
|
|
|
set(lint-w4 $<$<BOOL:${UV_LINT_W4}>:/W4>)
|
2020-04-28 17:22:27 +02:00
|
|
|
set(lint-no-unused-parameter-msvc $<$<BOOL:${UV_LINT_NO_UNUSED_PARAMETER_MSVC}>:/wd4100>)
|
|
|
|
set(lint-no-conditional-constant-msvc $<$<BOOL:${UV_LINT_NO_CONDITIONAL_CONSTANT_MSVC}>:/wd4127>)
|
|
|
|
set(lint-no-nonstandard-msvc $<$<BOOL:${UV_LINT_NO_NONSTANDARD_MSVC}>:/wd4201>)
|
|
|
|
set(lint-no-nonstandard-empty-tu-msvc $<$<BOOL:${UV_LINT_NO_NONSTANDARD_EMPTY_TU_MSVC}>:/wd4206>)
|
|
|
|
set(lint-no-nonstandard-file-scope-msvc $<$<BOOL:${UV_LINT_NO_NONSTANDARD_FILE_SCOPE_MSVC}>:/wd4210>)
|
|
|
|
set(lint-no-nonstandard-nonstatic-dlimport-msvc $<$<BOOL:${UV_LINT_NO_NONSTANDARD_NONSTATIC_DLIMPORT_MSVC}>:/wd4232>)
|
|
|
|
set(lint-no-hides-local-msvc $<$<BOOL:${UV_LINT_NO_HIDES_LOCAL}>:/wd4456>)
|
|
|
|
set(lint-no-hides-param-msvc $<$<BOOL:${UV_LINT_NO_HIDES_PARAM}>:/wd4457>)
|
|
|
|
set(lint-no-hides-global-msvc $<$<BOOL:${UV_LINT_NO_HIDES_GLOBAL}>:/wd4459>)
|
|
|
|
set(lint-no-conditional-assignment-msvc $<$<BOOL:${UV_LINT_NO_CONDITIONAL_ASSIGNMENT_MSVC}>:/wd4706>)
|
|
|
|
set(lint-no-unsafe-msvc $<$<BOOL:${UV_LINT_NO_UNSAFE_MSVC}>:/wd4996>)
|
2019-10-13 12:39:06 -07:00
|
|
|
# Unfortunately, this one is complicated because MSVC and clang-cl support -Wall
|
|
|
|
# but using it is like calling -Weverything
|
|
|
|
string(CONCAT lint-default $<
|
|
|
|
$<AND:$<BOOL:${UV_LINT_WALL}>,$<NOT:${is-msvc}>>:-Wall
|
|
|
|
>)
|
2020-08-13 01:07:44 +08:00
|
|
|
set(lint-utf8-msvc $<$<BOOL:${UV_LINT_UTF8_MSVC}>:/utf-8>)
|
2019-10-13 12:39:06 -07:00
|
|
|
|
|
|
|
list(APPEND uv_cflags ${lint-strict-prototypes} ${lint-extra} ${lint-default} ${lint-w4})
|
|
|
|
list(APPEND uv_cflags ${lint-no-unused-parameter})
|
2020-04-28 17:22:27 +02:00
|
|
|
list(APPEND uv_cflags ${lint-no-unused-parameter-msvc})
|
|
|
|
list(APPEND uv_cflags ${lint-no-conditional-constant-msvc})
|
|
|
|
list(APPEND uv_cflags ${lint-no-nonstandard-msvc})
|
|
|
|
list(APPEND uv_cflags ${lint-no-nonstandard-empty-tu-msvc})
|
|
|
|
list(APPEND uv_cflags ${lint-no-nonstandard-file-scope-msvc})
|
|
|
|
list(APPEND uv_cflags ${lint-no-nonstandard-nonstatic-dlimport-msvc})
|
|
|
|
list(APPEND uv_cflags ${lint-no-hides-local-msvc})
|
|
|
|
list(APPEND uv_cflags ${lint-no-hides-param-msvc})
|
|
|
|
list(APPEND uv_cflags ${lint-no-hides-global-msvc})
|
|
|
|
list(APPEND uv_cflags ${lint-no-conditional-assignment-msvc})
|
|
|
|
list(APPEND uv_cflags ${lint-no-unsafe-msvc})
|
2020-08-13 01:07:44 +08:00
|
|
|
list(APPEND uv_cflags ${lint-utf8-msvc} )
|
2018-05-30 13:35:41 +02:00
|
|
|
|
2020-11-06 20:39:00 +01:00
|
|
|
check_c_compiler_flag(-fno-strict-aliasing UV_F_STRICT_ALIASING)
|
|
|
|
list(APPEND uv_cflags $<$<BOOL:${UV_F_STRICT_ALIASING}>:-fno-strict-aliasing>)
|
|
|
|
|
2018-05-30 13:35:41 +02:00
|
|
|
set(uv_sources
|
|
|
|
src/fs-poll.c
|
2018-10-20 01:28:16 +02:00
|
|
|
src/idna.c
|
2018-05-30 13:35:41 +02:00
|
|
|
src/inet.c
|
2019-06-22 15:18:17 +02:00
|
|
|
src/random.c
|
2018-12-03 09:29:23 +01:00
|
|
|
src/strscpy.c
|
2018-05-30 13:35:41 +02:00
|
|
|
src/threadpool.c
|
2018-06-14 19:22:57 +02:00
|
|
|
src/timer.c
|
2018-05-30 13:35:41 +02:00
|
|
|
src/uv-common.c
|
|
|
|
src/uv-data-getter-setters.c
|
|
|
|
src/version.c)
|
|
|
|
|
|
|
|
if(WIN32)
|
2020-04-29 00:02:14 +02:00
|
|
|
list(APPEND uv_defines WIN32_LEAN_AND_MEAN _WIN32_WINNT=0x0602)
|
2018-05-30 13:35:41 +02:00
|
|
|
list(APPEND uv_libraries
|
2020-03-22 14:41:24 +09:00
|
|
|
psapi
|
2020-07-20 11:37:57 +02:00
|
|
|
user32
|
|
|
|
advapi32
|
2018-05-30 13:35:41 +02:00
|
|
|
iphlpapi
|
|
|
|
userenv
|
|
|
|
ws2_32)
|
|
|
|
list(APPEND uv_sources
|
|
|
|
src/win/async.c
|
|
|
|
src/win/core.c
|
|
|
|
src/win/detect-wakeup.c
|
|
|
|
src/win/dl.c
|
|
|
|
src/win/error.c
|
|
|
|
src/win/fs.c
|
|
|
|
src/win/fs-event.c
|
|
|
|
src/win/getaddrinfo.c
|
|
|
|
src/win/getnameinfo.c
|
|
|
|
src/win/handle.c
|
|
|
|
src/win/loop-watcher.c
|
|
|
|
src/win/pipe.c
|
|
|
|
src/win/thread.c
|
|
|
|
src/win/poll.c
|
|
|
|
src/win/process.c
|
|
|
|
src/win/process-stdio.c
|
|
|
|
src/win/signal.c
|
|
|
|
src/win/snprintf.c
|
|
|
|
src/win/stream.c
|
|
|
|
src/win/tcp.c
|
|
|
|
src/win/tty.c
|
|
|
|
src/win/udp.c
|
|
|
|
src/win/util.c
|
|
|
|
src/win/winapi.c
|
|
|
|
src/win/winsock.c)
|
2018-05-30 13:35:41 +02:00
|
|
|
list(APPEND uv_test_libraries ws2_32)
|
|
|
|
list(APPEND uv_test_sources src/win/snprintf.c test/runner-win.c)
|
2018-05-30 13:35:41 +02:00
|
|
|
else()
|
|
|
|
list(APPEND uv_defines _FILE_OFFSET_BITS=64 _LARGEFILE_SOURCE)
|
2020-09-22 12:56:00 -04:00
|
|
|
if(NOT CMAKE_SYSTEM_NAME MATCHES "Android|OS390|QNX")
|
2019-10-13 12:39:06 -07:00
|
|
|
# TODO: This should be replaced with find_package(Threads) if possible
|
2019-01-04 14:04:32 -05:00
|
|
|
# Android has pthread as part of its c library, not as a separate
|
2018-12-11 11:33:09 +01:00
|
|
|
# libpthread.so.
|
|
|
|
list(APPEND uv_libraries pthread)
|
|
|
|
endif()
|
2018-05-30 13:35:41 +02:00
|
|
|
list(APPEND uv_sources
|
|
|
|
src/unix/async.c
|
|
|
|
src/unix/core.c
|
|
|
|
src/unix/dl.c
|
|
|
|
src/unix/fs.c
|
|
|
|
src/unix/getaddrinfo.c
|
|
|
|
src/unix/getnameinfo.c
|
|
|
|
src/unix/loop-watcher.c
|
|
|
|
src/unix/loop.c
|
|
|
|
src/unix/pipe.c
|
|
|
|
src/unix/poll.c
|
|
|
|
src/unix/process.c
|
2019-06-22 15:18:17 +02:00
|
|
|
src/unix/random-devurandom.c
|
2018-05-30 13:35:41 +02:00
|
|
|
src/unix/signal.c
|
|
|
|
src/unix/stream.c
|
|
|
|
src/unix/tcp.c
|
|
|
|
src/unix/thread.c
|
|
|
|
src/unix/tty.c
|
|
|
|
src/unix/udp.c)
|
2018-05-30 13:35:41 +02:00
|
|
|
list(APPEND uv_test_sources test/runner-unix.c)
|
2018-05-30 13:35:41 +02:00
|
|
|
endif()
|
|
|
|
|
|
|
|
if(CMAKE_SYSTEM_NAME STREQUAL "AIX")
|
|
|
|
list(APPEND uv_defines
|
|
|
|
_ALL_SOURCE
|
|
|
|
_LINUX_SOURCE_COMPAT
|
|
|
|
_THREAD_SAFE
|
2020-03-06 12:39:51 -06:00
|
|
|
_XOPEN_SOURCE=500
|
|
|
|
HAVE_SYS_AHAFS_EVPRODS_H)
|
2018-05-30 13:35:41 +02:00
|
|
|
list(APPEND uv_libraries perfstat)
|
2020-03-06 12:39:51 -06:00
|
|
|
list(APPEND uv_sources
|
|
|
|
src/unix/aix.c
|
|
|
|
src/unix/aix-common.c)
|
2018-05-30 13:35:41 +02:00
|
|
|
endif()
|
|
|
|
|
|
|
|
if(CMAKE_SYSTEM_NAME STREQUAL "Android")
|
2020-07-03 15:21:53 +02:00
|
|
|
list(APPEND uv_defines _GNU_SOURCE)
|
2020-04-22 12:41:50 +02:00
|
|
|
list(APPEND uv_libraries dl)
|
2018-05-30 13:35:41 +02:00
|
|
|
list(APPEND uv_sources
|
|
|
|
src/unix/android-ifaddrs.c
|
|
|
|
src/unix/linux-core.c
|
|
|
|
src/unix/linux-inotify.c
|
|
|
|
src/unix/linux-syscalls.c
|
|
|
|
src/unix/procfs-exepath.c
|
|
|
|
src/unix/pthread-fixes.c
|
2020-02-28 11:47:50 +01:00
|
|
|
src/unix/random-getentropy.c
|
2019-11-18 12:13:12 +01:00
|
|
|
src/unix/random-getrandom.c
|
2021-07-03 00:30:37 +05:30
|
|
|
src/unix/random-sysctl-linux.c
|
|
|
|
src/unix/epoll.c)
|
2018-05-30 13:35:41 +02:00
|
|
|
endif()
|
|
|
|
|
2020-12-02 12:07:31 -05:00
|
|
|
if(APPLE OR CMAKE_SYSTEM_NAME MATCHES "Android|Linux")
|
2018-05-30 13:35:41 +02:00
|
|
|
list(APPEND uv_sources src/unix/proctitle.c)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(CMAKE_SYSTEM_NAME MATCHES "DragonFly|FreeBSD")
|
|
|
|
list(APPEND uv_sources src/unix/freebsd.c)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(CMAKE_SYSTEM_NAME MATCHES "DragonFly|FreeBSD|NetBSD|OpenBSD")
|
2018-10-16 22:04:44 +02:00
|
|
|
list(APPEND uv_sources src/unix/posix-hrtime.c src/unix/bsd-proctitle.c)
|
2018-05-30 13:35:41 +02:00
|
|
|
endif()
|
|
|
|
|
2019-04-07 12:47:04 -04:00
|
|
|
if(APPLE OR CMAKE_SYSTEM_NAME MATCHES "DragonFly|FreeBSD|NetBSD|OpenBSD")
|
2018-05-30 13:35:41 +02:00
|
|
|
list(APPEND uv_sources src/unix/bsd-ifaddrs.c src/unix/kqueue.c)
|
|
|
|
endif()
|
|
|
|
|
2019-06-22 15:18:17 +02:00
|
|
|
if(CMAKE_SYSTEM_NAME MATCHES "FreeBSD")
|
|
|
|
list(APPEND uv_sources src/unix/random-getrandom.c)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(APPLE OR CMAKE_SYSTEM_NAME STREQUAL "OpenBSD")
|
|
|
|
list(APPEND uv_sources src/unix/random-getentropy.c)
|
|
|
|
endif()
|
|
|
|
|
2019-04-07 12:47:04 -04:00
|
|
|
if(APPLE)
|
2018-05-30 13:35:41 +02:00
|
|
|
list(APPEND uv_defines _DARWIN_UNLIMITED_SELECT=1 _DARWIN_USE_64_BIT_INODE=1)
|
|
|
|
list(APPEND uv_sources
|
|
|
|
src/unix/darwin-proctitle.c
|
|
|
|
src/unix/darwin.c
|
|
|
|
src/unix/fsevents.c)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(CMAKE_SYSTEM_NAME STREQUAL "Linux")
|
|
|
|
list(APPEND uv_defines _GNU_SOURCE _POSIX_C_SOURCE=200112)
|
|
|
|
list(APPEND uv_libraries dl rt)
|
|
|
|
list(APPEND uv_sources
|
|
|
|
src/unix/linux-core.c
|
|
|
|
src/unix/linux-inotify.c
|
|
|
|
src/unix/linux-syscalls.c
|
|
|
|
src/unix/procfs-exepath.c
|
2019-06-22 15:18:17 +02:00
|
|
|
src/unix/random-getrandom.c
|
2021-07-03 00:30:37 +05:30
|
|
|
src/unix/random-sysctl-linux.c
|
|
|
|
src/unix/epoll.c)
|
2018-05-30 13:35:41 +02:00
|
|
|
endif()
|
|
|
|
|
|
|
|
if(CMAKE_SYSTEM_NAME STREQUAL "NetBSD")
|
|
|
|
list(APPEND uv_sources src/unix/netbsd.c)
|
2020-06-08 11:09:23 +02:00
|
|
|
list(APPEND uv_libraries kvm)
|
2018-05-30 13:35:41 +02:00
|
|
|
endif()
|
|
|
|
|
|
|
|
if(CMAKE_SYSTEM_NAME STREQUAL "OpenBSD")
|
|
|
|
list(APPEND uv_sources src/unix/openbsd.c)
|
|
|
|
endif()
|
|
|
|
|
2020-03-13 14:45:24 -04:00
|
|
|
if(CMAKE_SYSTEM_NAME STREQUAL "OS390")
|
2020-08-31 11:26:12 -04:00
|
|
|
enable_language(CXX)
|
2020-08-28 13:14:57 -04:00
|
|
|
list(APPEND uv_defines PATH_MAX=1024)
|
2018-05-30 13:35:41 +02:00
|
|
|
list(APPEND uv_defines _AE_BIMODAL)
|
|
|
|
list(APPEND uv_defines _ALL_SOURCE)
|
2020-08-28 13:14:57 -04:00
|
|
|
list(APPEND uv_defines _ENHANCED_ASCII_EXT=0xFFFFFFFF)
|
test: add a bunch of ASSERT macros
To make the debugging of test issues easier.
The following integer macros are added:
`ASSERT_EQ(a, b)`, `ASSERT_GE(a, b)`, `ASSERT_GT(a, b)`,
`ASSERT_LE(a, b)`, `ASSERT_LT(a, b)` and `ASSERT_NE(a, b)`.
And its corresponding unsigned integer macros:
`ASSERT_UINT64_EQ(a, b)`, `ASSERT_UINT64_GE(a, b)`,
`ASSERT_UINT64_GT(a, b)`, `ASSERT_UINT64_LE(a, b)`,
`ASSERT_UINT64_LT(a, b)` and `ASSERT_UINT64_NE(a, b)`.
Also these macros for `NULL` and pointer checks:
`ASSERT_NULL(a)`, `ASSERT_NOT_NULL(a)`, `ASSERT_PTR_EQ(a, b)` and
`ASSERT_PTR_NE(a, b)`.
And finally these macros for strings and buffers:
`ASSERT_STR_EQ(a, b)`/`ASSERT_STR_NEQ(a, b)` that use the `strcmp()`
call.
`ASSERT_MEM_EQ(a, b)`/`ASSERT_MEM_NEQ(a, b)` and
`ASSERT_MEM_HEX_EQ(a, b)`/`ASSERT_MEM_HEX_NEQ(a, b)` that use the
`memcmp()` call. The former, prints the data in string format and the
latter in hex format.
These macros are used in the following way:
```c
ASSERT_EQ(UV_EINVAL, uv_loop_close(&loop));
```
With a sample output that would be as follows:
```
Assertion failed in test/test-loop-close.c on line 44: `UV_EINVAL == uv_loop_close(&loop)` (-22 == -16)
```
To view multiples examples if their use, the `test-ipc.c` file has been
modified to use these macros.
The `_ISOC99_SOURCE` is defined to support `inttypes.h` in `z/OS`.
PR-URL: https://github.com/libuv/libuv/pull/2739
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
2020-03-14 21:26:47 +01:00
|
|
|
list(APPEND uv_defines _ISOC99_SOURCE)
|
2018-05-30 13:35:41 +02:00
|
|
|
list(APPEND uv_defines _LARGE_TIME_API)
|
|
|
|
list(APPEND uv_defines _OPEN_MSGQ_EXT)
|
|
|
|
list(APPEND uv_defines _OPEN_SYS_FILE_EXT)
|
|
|
|
list(APPEND uv_defines _OPEN_SYS_IF_EXT)
|
2019-02-21 06:37:31 +01:00
|
|
|
list(APPEND uv_defines _OPEN_SYS_SOCK_EXT3)
|
2018-05-30 13:35:41 +02:00
|
|
|
list(APPEND uv_defines _OPEN_SYS_SOCK_IPV6)
|
|
|
|
list(APPEND uv_defines _UNIX03_SOURCE)
|
|
|
|
list(APPEND uv_defines _UNIX03_THREADS)
|
|
|
|
list(APPEND uv_defines _UNIX03_WITHDRAWN)
|
2020-08-28 13:14:57 -04:00
|
|
|
list(APPEND uv_defines _XOPEN_SOURCE=600)
|
2018-05-30 13:35:41 +02:00
|
|
|
list(APPEND uv_defines _XOPEN_SOURCE_EXTENDED)
|
|
|
|
list(APPEND uv_sources
|
|
|
|
src/unix/pthread-fixes.c
|
|
|
|
src/unix/os390.c
|
2020-12-02 12:07:31 -05:00
|
|
|
src/unix/os390-syscalls.c
|
|
|
|
src/unix/os390-proctitle.c)
|
2020-08-28 13:14:57 -04:00
|
|
|
list(APPEND uv_cflags
|
|
|
|
-q64
|
|
|
|
-qascii
|
|
|
|
-qexportall
|
|
|
|
-qgonumber
|
|
|
|
-qlongname
|
|
|
|
-qlibansi
|
|
|
|
-qfloat=IEEE
|
|
|
|
-qtune=10
|
|
|
|
-qarch=10
|
|
|
|
-qasm
|
|
|
|
-qasmlib=sys1.maclib:sys1.modgen)
|
2020-08-31 11:26:12 -04:00
|
|
|
find_library(ZOSLIB
|
|
|
|
NAMES zoslib
|
|
|
|
PATHS ${ZOSLIB_DIR}
|
|
|
|
PATH_SUFFIXES lib
|
|
|
|
)
|
|
|
|
list(APPEND uv_libraries ${ZOSLIB})
|
2018-05-30 13:35:41 +02:00
|
|
|
endif()
|
|
|
|
|
2020-03-06 12:28:59 -06:00
|
|
|
if(CMAKE_SYSTEM_NAME STREQUAL "OS400")
|
|
|
|
list(APPEND uv_defines
|
|
|
|
_ALL_SOURCE
|
|
|
|
_LINUX_SOURCE_COMPAT
|
|
|
|
_THREAD_SAFE
|
|
|
|
_XOPEN_SOURCE=500)
|
|
|
|
list(APPEND uv_sources
|
|
|
|
src/unix/aix-common.c
|
|
|
|
src/unix/ibmi.c
|
|
|
|
src/unix/no-fsevents.c
|
|
|
|
src/unix/posix-poll.c)
|
|
|
|
endif()
|
|
|
|
|
2018-05-30 13:35:41 +02:00
|
|
|
if(CMAKE_SYSTEM_NAME STREQUAL "SunOS")
|
2021-07-20 02:27:40 +00:00
|
|
|
list(APPEND uv_defines __EXTENSIONS__ _XOPEN_SOURCE=500 _REENTRANT)
|
2018-05-30 13:35:41 +02:00
|
|
|
list(APPEND uv_libraries kstat nsl sendfile socket)
|
2021-07-03 00:30:37 +05:30
|
|
|
list(APPEND uv_sources
|
|
|
|
src/unix/no-proctitle.c
|
2021-07-20 02:19:24 +00:00
|
|
|
src/unix/sunos.c)
|
2020-09-13 18:36:16 +00:00
|
|
|
endif()
|
|
|
|
|
|
|
|
if(CMAKE_SYSTEM_NAME STREQUAL "Haiku")
|
|
|
|
list(APPEND uv_defines _BSD_SOURCE)
|
|
|
|
list(APPEND uv_libraries bsd network)
|
|
|
|
list(APPEND uv_sources
|
|
|
|
src/unix/haiku.c
|
|
|
|
src/unix/bsd-ifaddrs.c
|
|
|
|
src/unix/no-fsevents.c
|
|
|
|
src/unix/no-proctitle.c
|
|
|
|
src/unix/posix-hrtime.c
|
|
|
|
src/unix/posix-poll.c)
|
2018-05-30 13:35:41 +02:00
|
|
|
endif()
|
|
|
|
|
2020-09-22 12:56:00 -04:00
|
|
|
if(CMAKE_SYSTEM_NAME STREQUAL "QNX")
|
|
|
|
list(APPEND uv_sources
|
|
|
|
src/unix/posix-hrtime.c
|
|
|
|
src/unix/posix-poll.c
|
|
|
|
src/unix/qnx.c
|
|
|
|
src/unix/bsd-ifaddrs.c
|
|
|
|
src/unix/no-proctitle.c
|
|
|
|
src/unix/no-fsevents.c)
|
|
|
|
list(APPEND uv_libraries socket)
|
|
|
|
endif()
|
|
|
|
|
2019-04-07 12:47:04 -04:00
|
|
|
if(APPLE OR CMAKE_SYSTEM_NAME MATCHES "DragonFly|FreeBSD|Linux|NetBSD|OpenBSD")
|
2018-05-30 13:35:41 +02:00
|
|
|
list(APPEND uv_test_libraries util)
|
|
|
|
endif()
|
|
|
|
|
2018-05-30 13:35:41 +02:00
|
|
|
add_library(uv SHARED ${uv_sources})
|
2019-09-06 10:07:13 +02:00
|
|
|
target_compile_definitions(uv
|
2019-10-13 12:39:06 -07:00
|
|
|
INTERFACE
|
|
|
|
USING_UV_SHARED=1
|
|
|
|
PRIVATE
|
|
|
|
BUILDING_UV_SHARED=1
|
|
|
|
${uv_defines})
|
2018-05-30 13:35:41 +02:00
|
|
|
target_compile_options(uv PRIVATE ${uv_cflags})
|
2019-10-13 12:39:06 -07:00
|
|
|
target_include_directories(uv
|
|
|
|
PUBLIC
|
|
|
|
$<BUILD_INTERFACE:${PROJECT_SOURCE_DIR}/include>
|
|
|
|
$<INSTALL_INTERFACE:${CMAKE_INSTALL_INCLUDEDIR}>
|
|
|
|
PRIVATE
|
|
|
|
$<BUILD_INTERFACE:${PROJECT_SOURCE_DIR}/src>)
|
2020-08-31 11:26:12 -04:00
|
|
|
if(CMAKE_SYSTEM_NAME STREQUAL "OS390")
|
|
|
|
target_include_directories(uv PUBLIC $<BUILD_INTERFACE:${ZOSLIB_DIR}/include>)
|
|
|
|
set_target_properties(uv PROPERTIES LINKER_LANGUAGE CXX)
|
|
|
|
endif()
|
2018-05-30 13:35:41 +02:00
|
|
|
target_link_libraries(uv ${uv_libraries})
|
|
|
|
|
|
|
|
add_library(uv_a STATIC ${uv_sources})
|
|
|
|
target_compile_definitions(uv_a PRIVATE ${uv_defines})
|
|
|
|
target_compile_options(uv_a PRIVATE ${uv_cflags})
|
2019-10-13 12:39:06 -07:00
|
|
|
target_include_directories(uv_a
|
|
|
|
PUBLIC
|
|
|
|
$<BUILD_INTERFACE:${PROJECT_SOURCE_DIR}/include>
|
|
|
|
$<INSTALL_INTERFACE:${CMAKE_INSTALL_INCLUDEDIR}>
|
|
|
|
PRIVATE
|
|
|
|
$<BUILD_INTERFACE:${PROJECT_SOURCE_DIR}/src>)
|
2020-08-31 11:26:12 -04:00
|
|
|
if(CMAKE_SYSTEM_NAME STREQUAL "OS390")
|
|
|
|
target_include_directories(uv_a PUBLIC $<BUILD_INTERFACE:${ZOSLIB_DIR}/include>)
|
|
|
|
set_target_properties(uv_a PROPERTIES LINKER_LANGUAGE CXX)
|
|
|
|
endif()
|
2018-05-30 13:35:41 +02:00
|
|
|
target_link_libraries(uv_a ${uv_libraries})
|
|
|
|
|
2019-09-28 06:47:20 -07:00
|
|
|
if(LIBUV_BUILD_TESTS)
|
2020-04-06 12:33:27 +02:00
|
|
|
# Small hack: use ${uv_test_sources} now to get the runner skeleton,
|
|
|
|
# before the actual tests are added.
|
|
|
|
add_executable(
|
|
|
|
uv_run_benchmarks_a
|
|
|
|
${uv_test_sources}
|
|
|
|
test/benchmark-async-pummel.c
|
|
|
|
test/benchmark-async.c
|
|
|
|
test/benchmark-fs-stat.c
|
|
|
|
test/benchmark-getaddrinfo.c
|
|
|
|
test/benchmark-loop-count.c
|
|
|
|
test/benchmark-million-async.c
|
|
|
|
test/benchmark-million-timers.c
|
|
|
|
test/benchmark-multi-accept.c
|
|
|
|
test/benchmark-ping-pongs.c
|
|
|
|
test/benchmark-ping-udp.c
|
|
|
|
test/benchmark-pound.c
|
|
|
|
test/benchmark-pump.c
|
|
|
|
test/benchmark-sizes.c
|
|
|
|
test/benchmark-spawn.c
|
|
|
|
test/benchmark-tcp-write-batch.c
|
|
|
|
test/benchmark-thread.c
|
|
|
|
test/benchmark-udp-pummel.c
|
|
|
|
test/blackhole-server.c
|
|
|
|
test/dns-server.c
|
|
|
|
test/echo-server.c
|
|
|
|
test/run-benchmarks.c
|
|
|
|
test/runner.c)
|
|
|
|
target_compile_definitions(uv_run_benchmarks_a PRIVATE ${uv_defines})
|
|
|
|
target_compile_options(uv_run_benchmarks_a PRIVATE ${uv_cflags})
|
|
|
|
target_link_libraries(uv_run_benchmarks_a uv_a ${uv_test_libraries})
|
|
|
|
|
2019-10-13 12:39:06 -07:00
|
|
|
list(APPEND uv_test_sources
|
|
|
|
test/blackhole-server.c
|
|
|
|
test/echo-server.c
|
|
|
|
test/run-tests.c
|
|
|
|
test/runner.c
|
|
|
|
test/test-active.c
|
|
|
|
test/test-async-null-cb.c
|
|
|
|
test/test-async.c
|
|
|
|
test/test-barrier.c
|
|
|
|
test/test-callback-order.c
|
|
|
|
test/test-callback-stack.c
|
|
|
|
test/test-close-fd.c
|
|
|
|
test/test-close-order.c
|
|
|
|
test/test-condvar.c
|
|
|
|
test/test-connect-unspecified.c
|
|
|
|
test/test-connection-fail.c
|
|
|
|
test/test-cwd-and-chdir.c
|
|
|
|
test/test-default-loop-close.c
|
|
|
|
test/test-delayed-accept.c
|
|
|
|
test/test-dlerror.c
|
|
|
|
test/test-eintr-handling.c
|
|
|
|
test/test-embed.c
|
|
|
|
test/test-emfile.c
|
|
|
|
test/test-env-vars.c
|
|
|
|
test/test-error.c
|
|
|
|
test/test-fail-always.c
|
|
|
|
test/test-fork.c
|
|
|
|
test/test-fs-copyfile.c
|
|
|
|
test/test-fs-event.c
|
|
|
|
test/test-fs-poll.c
|
|
|
|
test/test-fs.c
|
|
|
|
test/test-fs-readdir.c
|
|
|
|
test/test-fs-fd-hash.c
|
|
|
|
test/test-fs-open-flags.c
|
|
|
|
test/test-get-currentexe.c
|
|
|
|
test/test-get-loadavg.c
|
|
|
|
test/test-get-memory.c
|
|
|
|
test/test-get-passwd.c
|
|
|
|
test/test-getaddrinfo.c
|
|
|
|
test/test-gethostname.c
|
|
|
|
test/test-getnameinfo.c
|
|
|
|
test/test-getsockname.c
|
|
|
|
test/test-getters-setters.c
|
|
|
|
test/test-gettimeofday.c
|
|
|
|
test/test-handle-fileno.c
|
|
|
|
test/test-homedir.c
|
|
|
|
test/test-hrtime.c
|
|
|
|
test/test-idle.c
|
|
|
|
test/test-idna.c
|
|
|
|
test/test-ip4-addr.c
|
|
|
|
test/test-ip6-addr.c
|
|
|
|
test/test-ipc-heavy-traffic-deadlock-bug.c
|
|
|
|
test/test-ipc-send-recv.c
|
|
|
|
test/test-ipc.c
|
|
|
|
test/test-loop-alive.c
|
|
|
|
test/test-loop-close.c
|
|
|
|
test/test-loop-configure.c
|
|
|
|
test/test-loop-handles.c
|
|
|
|
test/test-loop-stop.c
|
|
|
|
test/test-loop-time.c
|
2020-03-26 17:15:13 -06:00
|
|
|
test/test-metrics.c
|
2019-10-13 12:39:06 -07:00
|
|
|
test/test-multiple-listen.c
|
|
|
|
test/test-mutexes.c
|
2021-05-21 16:20:07 -04:00
|
|
|
test/test-not-readable-nor-writable-on-read-error.c
|
|
|
|
test/test-not-readable-on-eof.c
|
|
|
|
test/test-not-writable-after-shutdown.c
|
2019-10-13 12:39:06 -07:00
|
|
|
test/test-osx-select.c
|
|
|
|
test/test-pass-always.c
|
|
|
|
test/test-ping-pong.c
|
|
|
|
test/test-pipe-bind-error.c
|
|
|
|
test/test-pipe-close-stdout-read-stdin.c
|
|
|
|
test/test-pipe-connect-error.c
|
|
|
|
test/test-pipe-connect-multiple.c
|
|
|
|
test/test-pipe-connect-prepare.c
|
|
|
|
test/test-pipe-getsockname.c
|
|
|
|
test/test-pipe-pending-instances.c
|
|
|
|
test/test-pipe-sendmsg.c
|
|
|
|
test/test-pipe-server-close.c
|
|
|
|
test/test-pipe-set-fchmod.c
|
|
|
|
test/test-pipe-set-non-blocking.c
|
|
|
|
test/test-platform-output.c
|
|
|
|
test/test-poll-close-doesnt-corrupt-stack.c
|
|
|
|
test/test-poll-close.c
|
|
|
|
test/test-poll-closesocket.c
|
poll,unix: ensure safety of rapid fd reuse
Consider the following scenario:
uv_poll_init(loop, poll, fd);
uv_poll_start(poll, UV_READABLE, cb);
// the cb gets invoked etc.
uv_poll_stop(poll);
close(fd);
fd = allocate_new_socket(); // allocate_new_socket() is assigned the same fd by "bad luck" from the OS
// some time later:
uv_poll_init(loop, otherpoll, fd);
uv_poll_start(otherpoll, UV_READABLE, cb);
uv_close(poll); // uv__io_stop: Assertion `loop->watchers[w->fd] == w' failed.
According to documentation, "however the fd can be safely closed
immediately after a call to uv_poll_stop() or uv_close()."
Though, in this scenario, we close()'d our file descriptor, and by
bad luck we got the same file descriptor again and register a new
handle for it and start polling.
Previously that would lead to an assertion failure, if we were to
properly free the original handle via uv_close().
This commit fixes that by moving the check whether a only a single
poll handle is active to uv_poll_start() instead of the stopping
routines.
Fixes: https://github.com/libuv/libuv/issues/1172
Fixes: https://github.com/bwoebi/php-uv/issues/81
Fixes: https://github.com/b2wdigital/aiologger/issues/82
Fixes: https://github.com/invenia/LibPQ.jl/issues/140
PR-URL: https://github.com/libuv/libuv/pull/2686
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Jameson Nash <vtjnash@gmail.com>
2020-12-28 17:51:23 +01:00
|
|
|
test/test-poll-multiple-handles.c
|
2019-10-13 12:39:06 -07:00
|
|
|
test/test-poll-oob.c
|
|
|
|
test/test-poll.c
|
|
|
|
test/test-process-priority.c
|
|
|
|
test/test-process-title-threadsafe.c
|
|
|
|
test/test-process-title.c
|
|
|
|
test/test-queue-foreach-delete.c
|
|
|
|
test/test-random.c
|
|
|
|
test/test-ref.c
|
|
|
|
test/test-run-nowait.c
|
|
|
|
test/test-run-once.c
|
|
|
|
test/test-semaphore.c
|
|
|
|
test/test-shutdown-close.c
|
|
|
|
test/test-shutdown-eof.c
|
2021-07-13 10:54:02 -04:00
|
|
|
test/test-shutdown-simultaneous.c
|
2019-10-13 12:39:06 -07:00
|
|
|
test/test-shutdown-twice.c
|
|
|
|
test/test-signal-multiple-loops.c
|
|
|
|
test/test-signal-pending-on-close.c
|
|
|
|
test/test-signal.c
|
|
|
|
test/test-socket-buffer-size.c
|
|
|
|
test/test-spawn.c
|
|
|
|
test/test-stdio-over-pipes.c
|
|
|
|
test/test-strscpy.c
|
|
|
|
test/test-tcp-alloc-cb-fail.c
|
|
|
|
test/test-tcp-bind-error.c
|
|
|
|
test/test-tcp-bind6-error.c
|
|
|
|
test/test-tcp-close-accept.c
|
|
|
|
test/test-tcp-close-while-connecting.c
|
|
|
|
test/test-tcp-close.c
|
|
|
|
test/test-tcp-close-reset.c
|
|
|
|
test/test-tcp-connect-error-after-write.c
|
|
|
|
test/test-tcp-connect-error.c
|
|
|
|
test/test-tcp-connect-timeout.c
|
|
|
|
test/test-tcp-connect6-error.c
|
|
|
|
test/test-tcp-create-socket-early.c
|
|
|
|
test/test-tcp-flags.c
|
|
|
|
test/test-tcp-oob.c
|
|
|
|
test/test-tcp-open.c
|
|
|
|
test/test-tcp-read-stop.c
|
2020-07-28 13:59:08 -04:00
|
|
|
test/test-tcp-read-stop-start.c
|
2019-10-13 12:39:06 -07:00
|
|
|
test/test-tcp-shutdown-after-write.c
|
|
|
|
test/test-tcp-try-write.c
|
|
|
|
test/test-tcp-try-write-error.c
|
|
|
|
test/test-tcp-unexpected-read.c
|
|
|
|
test/test-tcp-write-after-connect.c
|
|
|
|
test/test-tcp-write-fail.c
|
|
|
|
test/test-tcp-write-queue-order.c
|
|
|
|
test/test-tcp-write-to-half-open-connection.c
|
|
|
|
test/test-tcp-writealot.c
|
2020-08-12 22:43:02 +05:30
|
|
|
test/test-test-macros.c
|
2019-10-13 12:39:06 -07:00
|
|
|
test/test-thread-equal.c
|
|
|
|
test/test-thread.c
|
|
|
|
test/test-threadpool-cancel.c
|
|
|
|
test/test-threadpool.c
|
|
|
|
test/test-timer-again.c
|
|
|
|
test/test-timer-from-check.c
|
|
|
|
test/test-timer.c
|
|
|
|
test/test-tmpdir.c
|
|
|
|
test/test-tty-duplicate-key.c
|
2020-02-18 16:02:28 +09:00
|
|
|
test/test-tty-escape-sequence-processing.c
|
2019-10-13 12:39:06 -07:00
|
|
|
test/test-tty.c
|
|
|
|
test/test-udp-alloc-cb-fail.c
|
|
|
|
test/test-udp-bind.c
|
|
|
|
test/test-udp-connect.c
|
|
|
|
test/test-udp-create-socket-early.c
|
|
|
|
test/test-udp-dgram-too-big.c
|
|
|
|
test/test-udp-ipv6.c
|
2020-07-28 17:14:42 -07:00
|
|
|
test/test-udp-mmsg.c
|
2019-10-13 12:39:06 -07:00
|
|
|
test/test-udp-multicast-interface.c
|
|
|
|
test/test-udp-multicast-interface6.c
|
|
|
|
test/test-udp-multicast-join.c
|
|
|
|
test/test-udp-multicast-join6.c
|
|
|
|
test/test-udp-multicast-ttl.c
|
|
|
|
test/test-udp-open.c
|
|
|
|
test/test-udp-options.c
|
|
|
|
test/test-udp-send-and-recv.c
|
|
|
|
test/test-udp-send-hang-loop.c
|
|
|
|
test/test-udp-send-immediate.c
|
2020-06-30 12:56:48 +02:00
|
|
|
test/test-udp-sendmmsg-error.c
|
2019-10-13 12:39:06 -07:00
|
|
|
test/test-udp-send-unreachable.c
|
|
|
|
test/test-udp-try-send.c
|
|
|
|
test/test-uname.c
|
|
|
|
test/test-walk-handles.c
|
|
|
|
test/test-watcher-cross-stop.c)
|
|
|
|
|
2020-04-28 18:41:46 +02:00
|
|
|
add_executable(uv_run_tests ${uv_test_sources} uv_win_longpath.manifest)
|
2019-02-12 14:54:05 -08:00
|
|
|
target_compile_definitions(uv_run_tests
|
|
|
|
PRIVATE ${uv_defines} USING_UV_SHARED=1)
|
2018-05-30 13:35:41 +02:00
|
|
|
target_compile_options(uv_run_tests PRIVATE ${uv_cflags})
|
|
|
|
target_link_libraries(uv_run_tests uv ${uv_test_libraries})
|
|
|
|
add_test(NAME uv_test
|
|
|
|
COMMAND uv_run_tests
|
|
|
|
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR})
|
2020-03-13 14:45:24 -04:00
|
|
|
if(CMAKE_SYSTEM_NAME STREQUAL "OS390")
|
|
|
|
set_tests_properties(uv_test PROPERTIES ENVIRONMENT
|
|
|
|
"LIBPATH=${CMAKE_BINARY_DIR}:$ENV{LIBPATH}")
|
|
|
|
endif()
|
2020-04-28 18:41:46 +02:00
|
|
|
add_executable(uv_run_tests_a ${uv_test_sources} uv_win_longpath.manifest)
|
2018-05-30 13:35:41 +02:00
|
|
|
target_compile_definitions(uv_run_tests_a PRIVATE ${uv_defines})
|
|
|
|
target_compile_options(uv_run_tests_a PRIVATE ${uv_cflags})
|
2020-05-13 21:57:07 +08:00
|
|
|
if(QEMU)
|
|
|
|
target_link_libraries(uv_run_tests_a uv_a ${uv_test_libraries} -static)
|
|
|
|
else()
|
|
|
|
target_link_libraries(uv_run_tests_a uv_a ${uv_test_libraries})
|
|
|
|
endif()
|
2018-05-30 13:35:41 +02:00
|
|
|
add_test(NAME uv_test_a
|
|
|
|
COMMAND uv_run_tests_a
|
|
|
|
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR})
|
2020-08-31 11:26:12 -04:00
|
|
|
if(CMAKE_SYSTEM_NAME STREQUAL "OS390")
|
|
|
|
set_target_properties(uv_run_benchmarks_a PROPERTIES LINKER_LANGUAGE CXX)
|
|
|
|
set_target_properties(uv_run_tests PROPERTIES LINKER_LANGUAGE CXX)
|
|
|
|
set_target_properties(uv_run_tests_a PROPERTIES LINKER_LANGUAGE CXX)
|
|
|
|
endif()
|
2018-05-30 13:35:41 +02:00
|
|
|
endif()
|
|
|
|
|
2020-02-24 15:47:11 +09:00
|
|
|
if(UNIX OR MINGW)
|
2018-05-30 13:35:41 +02:00
|
|
|
# Now for some gibbering horrors from beyond the stars...
|
2019-10-13 12:39:06 -07:00
|
|
|
foreach(lib IN LISTS uv_libraries)
|
|
|
|
list(APPEND LIBS "-l${lib}")
|
|
|
|
endforeach()
|
|
|
|
string(REPLACE ";" " " LIBS "${LIBS}")
|
|
|
|
# Consider setting project version via project() call?
|
2018-05-30 13:35:41 +02:00
|
|
|
file(STRINGS configure.ac configure_ac REGEX ^AC_INIT)
|
2019-10-13 12:39:06 -07:00
|
|
|
string(REGEX MATCH "([0-9]+)[.][0-9]+[.][0-9]+" PACKAGE_VERSION "${configure_ac}")
|
|
|
|
set(UV_VERSION_MAJOR "${CMAKE_MATCH_1}")
|
2019-09-06 10:02:00 +02:00
|
|
|
# The version in the filename is mirroring the behaviour of autotools.
|
2019-10-13 12:39:06 -07:00
|
|
|
set_target_properties(uv PROPERTIES
|
|
|
|
VERSION ${UV_VERSION_MAJOR}.0.0
|
|
|
|
SOVERSION ${UV_VERSION_MAJOR})
|
2018-05-30 13:35:41 +02:00
|
|
|
set(includedir ${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_INCLUDEDIR})
|
|
|
|
set(libdir ${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_LIBDIR})
|
|
|
|
set(prefix ${CMAKE_INSTALL_PREFIX})
|
2019-10-13 12:39:06 -07:00
|
|
|
configure_file(libuv.pc.in libuv.pc @ONLY)
|
2020-09-09 16:54:43 +03:00
|
|
|
configure_file(libuv-static.pc.in libuv-static.pc @ONLY)
|
2018-05-30 13:35:41 +02:00
|
|
|
|
|
|
|
install(DIRECTORY include/ DESTINATION ${CMAKE_INSTALL_INCLUDEDIR})
|
|
|
|
install(FILES LICENSE DESTINATION ${CMAKE_INSTALL_DOCDIR})
|
2020-09-09 16:54:43 +03:00
|
|
|
install(FILES ${PROJECT_BINARY_DIR}/libuv.pc ${PROJECT_BINARY_DIR}/libuv-static.pc
|
2018-05-30 13:35:41 +02:00
|
|
|
DESTINATION ${CMAKE_INSTALL_LIBDIR}/pkgconfig)
|
|
|
|
install(TARGETS uv LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR})
|
|
|
|
install(TARGETS uv_a ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR})
|
|
|
|
endif()
|
2018-12-12 10:04:31 +08:00
|
|
|
|
2020-02-24 15:47:11 +09:00
|
|
|
if(MSVC)
|
2018-12-12 10:04:31 +08:00
|
|
|
install(DIRECTORY include/ DESTINATION include)
|
|
|
|
install(FILES LICENSE DESTINATION .)
|
|
|
|
install(TARGETS uv uv_a
|
|
|
|
RUNTIME DESTINATION lib/$<CONFIG>
|
|
|
|
ARCHIVE DESTINATION lib/$<CONFIG>)
|
|
|
|
endif()
|
2020-05-13 21:57:07 +08:00
|
|
|
|
|
|
|
message(STATUS "summary of build options:
|
|
|
|
Install prefix: ${CMAKE_INSTALL_PREFIX}
|
|
|
|
Target system: ${CMAKE_SYSTEM_NAME}
|
|
|
|
Compiler:
|
|
|
|
C compiler: ${CMAKE_C_COMPILER}
|
|
|
|
CFLAGS: ${CMAKE_C_FLAGS_${_build_type}} ${CMAKE_C_FLAGS}
|
|
|
|
")
|