mirror of
https://github.com/libuv/libuv
synced 2025-03-28 21:13:16 +00:00
process,iOS: fix build breakage in process.c (#3563)
Remove the `TARGET_OS_IPHONE` ifdef to include posix spawn headers for iOS build. Previously https://github.com/libuv/libuv/pull/3257 introduced posix spawn with \_\_APPLE\_\_ platform only, which resulted in a number of spawn related definitions not found for iOS (such as `uv__posix_spawn_fncs_tag`). Co-authored-by: Jameson Nash <vtjnash@gmail.com>
This commit is contained in:
parent
abf201a894
commit
264f16dcf6
6
.github/workflows/CI-unix.yml
vendored
6
.github/workflows/CI-unix.yml
vendored
@ -30,6 +30,7 @@ jobs:
|
||||
- name: Build android arm64
|
||||
run: |
|
||||
$ANDROID_HOME/cmake/3.10.2.4988404/bin/cmake --build build
|
||||
ls -lh build
|
||||
|
||||
build-macos:
|
||||
runs-on: macos-10.15
|
||||
@ -69,10 +70,9 @@ jobs:
|
||||
cd build-ios
|
||||
cmake .. -GXcode -DCMAKE_SYSTEM_NAME:STRING=iOS -DCMAKE_XCODE_ATTRIBUTE_CODE_SIGNING_ALLOWED:BOOL=NO -DCMAKE_CONFIGURATION_TYPES:STRING=Release
|
||||
- name: Build
|
||||
continue-on-error: true # XXX: allow failure
|
||||
run: |
|
||||
cmake --build build-ios
|
||||
ls -lh
|
||||
ls -lh build-ios
|
||||
|
||||
build-cross-qemu:
|
||||
runs-on: ubuntu-latest
|
||||
@ -123,7 +123,7 @@ jobs:
|
||||
- name: Build
|
||||
run: |
|
||||
cmake --build build
|
||||
ls -lh
|
||||
ls -lh build
|
||||
- name: Test
|
||||
run: |
|
||||
${{ matrix.config.qemu }} build/uv_run_tests_a
|
||||
|
@ -35,7 +35,7 @@
|
||||
#include <fcntl.h>
|
||||
#include <poll.h>
|
||||
|
||||
#if defined(__APPLE__) && !TARGET_OS_IPHONE
|
||||
#if defined(__APPLE__)
|
||||
# include <spawn.h>
|
||||
# include <paths.h>
|
||||
# include <sys/kauth.h>
|
||||
|
Loading…
x
Reference in New Issue
Block a user