We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e2237fe commit f4a5805Copy full SHA for f4a5805
.github/workflows/prebuilds.yml
@@ -26,6 +26,7 @@ jobs:
26
module_version: ${{ inputs.module_version }}
27
platform: ${{ matrix.platform }}
28
arch: ${{ matrix.arch }}
29
+ patch_file: "binding.c.patch"
30
31
release:
32
if: ${{ inputs.publish_release }}
binding.c.patch
@@ -0,0 +1,14 @@
1
+--- a/binding.c
2
++++ b/binding.c
3
+@@ -5,6 +5,11 @@
4
+
5
+ #include "include/fs-ext.h"
6
+ #include "macros.h"
7
++
8
++// Compatibility fix for nodejs-mobile Android builds
9
++#ifndef UV_ENODATA
10
++#define UV_ENODATA (-4024)
11
++#endif
12
13
+ typedef struct {
14
+ fs_ext_lock_t req;
0 commit comments