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
12 lines
466 B
Diff
12 lines
466 B
Diff
--- ./deps/v8/src/logging/log.cc 2021-06-03 07:15:31.000000000 +0530
|
|
+++ ./deps/v8/src/logging/log.cc.mod 2021-06-18 20:27:34.605642275 +0530
|
|
@@ -291,7 +291,7 @@
|
|
FILE* perf_output_handle_;
|
|
};
|
|
|
|
-const char PerfBasicLogger::kFilenameFormatString[] = "/tmp/perf-%d.map";
|
|
+const char PerfBasicLogger::kFilenameFormatString[] = "@TERMUX_PREFIX@/tmp/perf-%d.map";
|
|
// Extra space for the PID in the filename
|
|
const int PerfBasicLogger::kFilenameBufferPadding = 16;
|
|
|