1
0
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:
Denny C. Dai 2022-03-22 12:11:26 -07:00 committed by GitHub
parent abf201a894
commit 264f16dcf6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View File

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

View File

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