Skip to content

Commit 50b7ab9

Browse files
authoredJan 18, 2022
build: fix libuv builds for android aarch64
This syncs up the source list in https://github.com/nodejs/node/blob/b2edcfee46097fe8e0510a455b97d5c6d0cac5ec/deps/uv/uv.gyp#L257-L265 with https://github.com/nodejs/node/blob/b2edcfee46097fe8e0510a455b97d5c6d0cac5ec/deps/uv/CMakeLists.txt#L218-L227. Fixes: nodejs#41380 Signed-off-by: Darshan Sen <[email protected]> PR-URL: nodejs#41555 Reviewed-By: Richard Lau <[email protected]> Reviewed-By: Tobias Nießen <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Mary Marchini <[email protected]> Reviewed-By: Jiawen Geng <[email protected]> Reviewed-By: James M Snell <[email protected]>
1 parent 8ed577a commit 50b7ab9

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed
 

‎deps/uv/uv.gyp

+4-3
Original file line numberDiff line numberDiff line change
@@ -254,15 +254,16 @@
254254
}],
255255
[ 'OS=="android"', {
256256
'sources': [
257+
'src/unix/android-ifaddrs.c',
257258
'src/unix/linux-core.c',
258259
'src/unix/linux-inotify.c',
259260
'src/unix/linux-syscalls.c',
260-
'src/unix/linux-syscalls.h',
261-
'src/unix/pthread-fixes.c',
262-
'src/unix/android-ifaddrs.c',
263261
'src/unix/procfs-exepath.c',
262+
'src/unix/pthread-fixes.c',
263+
'src/unix/random-getentropy.c',
264264
'src/unix/random-getrandom.c',
265265
'src/unix/random-sysctl-linux.c',
266+
'src/unix/epoll.c',
266267
],
267268
'link_settings': {
268269
'libraries': [ '-ldl' ],

0 commit comments

Comments
 (0)
Please sign in to comment.