dddd5b0a9b
We are passing flags to `configure.py` in order to tell the nodejs build toolchain to use shared libraries. The toolchain seems to mistakenly also try use shared libraries for host build, but it does not add respective linker flags (For example `-lz` for zlib). This commit hardcodes these flags to be always passed to linker by setting linker to linker + LDFLAGS of shared libraries
13 lines
403 B
Diff
13 lines
403 B
Diff
diff -uNr ./deps/uv/src/unix/core.c ./deps/uv/src/unix/core.c.mod
|
|
--- ./deps/uv/src/unix/core.c 2021-06-03 07:15:30.000000000 +0530
|
|
+++ ./deps/uv/src/unix/core.c.mod 2021-06-18 20:10:13.705642672 +0530
|
|
@@ -1116,7 +1116,7 @@
|
|
|
|
/* No temp environment variables defined */
|
|
#if defined(__ANDROID__)
|
|
- buf = "/data/local/tmp";
|
|
+ buf = "@TERMUX_PREFIX@/tmp";
|
|
#else
|
|
buf = "/tmp";
|
|
#endif
|