node-linux-armv7l 16.7.0 → 16.10.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (92) hide show
  1. package/CHANGELOG.md +287 -0
  2. package/LICENSE +11 -0
  3. package/README.md +283 -259
  4. package/bin/node +0 -0
  5. package/include/node/common.gypi +2 -1
  6. package/include/node/config.gypi +2 -0
  7. package/include/node/node.h +19 -1
  8. package/include/node/node_version.h +1 -1
  9. package/include/node/openssl/archs/BSD-x86/asm/crypto/buildinf.h +1 -1
  10. package/include/node/openssl/archs/BSD-x86/asm_avx2/crypto/buildinf.h +1 -1
  11. package/include/node/openssl/archs/BSD-x86/no-asm/crypto/buildinf.h +1 -1
  12. package/include/node/openssl/archs/BSD-x86_64/asm/crypto/buildinf.h +1 -1
  13. package/include/node/openssl/archs/BSD-x86_64/asm_avx2/crypto/buildinf.h +1 -1
  14. package/include/node/openssl/archs/BSD-x86_64/no-asm/crypto/buildinf.h +1 -1
  15. package/include/node/openssl/archs/VC-WIN32/asm/crypto/buildinf.h +1 -1
  16. package/include/node/openssl/archs/VC-WIN32/asm_avx2/crypto/buildinf.h +1 -1
  17. package/include/node/openssl/archs/VC-WIN32/no-asm/crypto/buildinf.h +1 -1
  18. package/include/node/openssl/archs/VC-WIN64-ARM/no-asm/crypto/buildinf.h +1 -1
  19. package/include/node/openssl/archs/VC-WIN64A/asm/crypto/buildinf.h +1 -1
  20. package/include/node/openssl/archs/VC-WIN64A/asm_avx2/crypto/buildinf.h +1 -1
  21. package/include/node/openssl/archs/VC-WIN64A/no-asm/crypto/buildinf.h +1 -1
  22. package/include/node/openssl/archs/aix-gcc/asm/crypto/buildinf.h +1 -1
  23. package/include/node/openssl/archs/aix-gcc/asm_avx2/crypto/buildinf.h +1 -1
  24. package/include/node/openssl/archs/aix-gcc/no-asm/crypto/buildinf.h +1 -1
  25. package/include/node/openssl/archs/aix64-gcc/asm/crypto/buildinf.h +1 -1
  26. package/include/node/openssl/archs/aix64-gcc/asm_avx2/crypto/buildinf.h +1 -1
  27. package/include/node/openssl/archs/aix64-gcc/no-asm/crypto/buildinf.h +1 -1
  28. package/include/node/openssl/archs/darwin-i386-cc/asm/crypto/buildinf.h +1 -1
  29. package/include/node/openssl/archs/darwin-i386-cc/asm_avx2/crypto/buildinf.h +1 -1
  30. package/include/node/openssl/archs/darwin-i386-cc/no-asm/crypto/buildinf.h +1 -1
  31. package/include/node/openssl/archs/darwin64-arm64-cc/asm/crypto/buildinf.h +1 -1
  32. package/include/node/openssl/archs/darwin64-arm64-cc/asm_avx2/crypto/buildinf.h +1 -1
  33. package/include/node/openssl/archs/darwin64-arm64-cc/no-asm/crypto/buildinf.h +1 -1
  34. package/include/node/openssl/archs/darwin64-x86_64-cc/asm/crypto/buildinf.h +1 -1
  35. package/include/node/openssl/archs/darwin64-x86_64-cc/asm_avx2/crypto/buildinf.h +1 -1
  36. package/include/node/openssl/archs/darwin64-x86_64-cc/no-asm/crypto/buildinf.h +1 -1
  37. package/include/node/openssl/archs/linux-aarch64/asm/crypto/buildinf.h +1 -1
  38. package/include/node/openssl/archs/linux-aarch64/asm_avx2/crypto/buildinf.h +1 -1
  39. package/include/node/openssl/archs/linux-aarch64/no-asm/crypto/buildinf.h +1 -1
  40. package/include/node/openssl/archs/linux-armv4/asm/crypto/buildinf.h +1 -1
  41. package/include/node/openssl/archs/linux-armv4/asm_avx2/crypto/buildinf.h +1 -1
  42. package/include/node/openssl/archs/linux-armv4/no-asm/crypto/buildinf.h +1 -1
  43. package/include/node/openssl/archs/linux-elf/asm/crypto/buildinf.h +1 -1
  44. package/include/node/openssl/archs/linux-elf/asm_avx2/crypto/buildinf.h +1 -1
  45. package/include/node/openssl/archs/linux-elf/no-asm/crypto/buildinf.h +1 -1
  46. package/include/node/openssl/archs/linux-ppc/asm/crypto/buildinf.h +1 -1
  47. package/include/node/openssl/archs/linux-ppc/asm_avx2/crypto/buildinf.h +1 -1
  48. package/include/node/openssl/archs/linux-ppc/no-asm/crypto/buildinf.h +1 -1
  49. package/include/node/openssl/archs/linux-ppc64/asm/crypto/buildinf.h +1 -1
  50. package/include/node/openssl/archs/linux-ppc64/asm_avx2/crypto/buildinf.h +1 -1
  51. package/include/node/openssl/archs/linux-ppc64/no-asm/crypto/buildinf.h +1 -1
  52. package/include/node/openssl/archs/linux-ppc64le/asm/crypto/buildinf.h +1 -1
  53. package/include/node/openssl/archs/linux-ppc64le/asm_avx2/crypto/buildinf.h +1 -1
  54. package/include/node/openssl/archs/linux-ppc64le/no-asm/crypto/buildinf.h +1 -1
  55. package/include/node/openssl/archs/linux-x32/asm/crypto/buildinf.h +1 -1
  56. package/include/node/openssl/archs/linux-x32/asm_avx2/crypto/buildinf.h +1 -1
  57. package/include/node/openssl/archs/linux-x32/no-asm/crypto/buildinf.h +1 -1
  58. package/include/node/openssl/archs/linux-x86_64/asm/crypto/buildinf.h +1 -1
  59. package/include/node/openssl/archs/linux-x86_64/asm_avx2/crypto/buildinf.h +1 -1
  60. package/include/node/openssl/archs/linux-x86_64/no-asm/crypto/buildinf.h +1 -1
  61. package/include/node/openssl/archs/linux32-s390x/asm/crypto/buildinf.h +1 -1
  62. package/include/node/openssl/archs/linux32-s390x/asm_avx2/crypto/buildinf.h +1 -1
  63. package/include/node/openssl/archs/linux32-s390x/no-asm/crypto/buildinf.h +1 -1
  64. package/include/node/openssl/archs/linux64-mips64/asm/crypto/buildinf.h +1 -1
  65. package/include/node/openssl/archs/linux64-mips64/asm_avx2/crypto/buildinf.h +1 -1
  66. package/include/node/openssl/archs/linux64-mips64/no-asm/crypto/buildinf.h +1 -1
  67. package/include/node/openssl/archs/linux64-riscv64/no-asm/crypto/buildinf.h +28 -0
  68. package/include/node/openssl/archs/linux64-riscv64/no-asm/crypto/include/internal/bn_conf.h +28 -0
  69. package/include/node/openssl/archs/linux64-riscv64/no-asm/crypto/include/internal/dso_conf.h +17 -0
  70. package/include/node/openssl/archs/linux64-riscv64/no-asm/include/openssl/opensslconf.h +203 -0
  71. package/include/node/openssl/archs/linux64-riscv64/no-asm/include/progs.h +507 -0
  72. package/include/node/openssl/archs/linux64-s390x/asm/crypto/buildinf.h +1 -1
  73. package/include/node/openssl/archs/linux64-s390x/asm_avx2/crypto/buildinf.h +1 -1
  74. package/include/node/openssl/archs/linux64-s390x/no-asm/crypto/buildinf.h +1 -1
  75. package/include/node/openssl/archs/solaris-x86-gcc/asm/crypto/buildinf.h +1 -1
  76. package/include/node/openssl/archs/solaris-x86-gcc/asm_avx2/crypto/buildinf.h +1 -1
  77. package/include/node/openssl/archs/solaris-x86-gcc/no-asm/crypto/buildinf.h +1 -1
  78. package/include/node/openssl/archs/solaris64-x86_64-gcc/asm/crypto/buildinf.h +1 -1
  79. package/include/node/openssl/archs/solaris64-x86_64-gcc/asm_avx2/crypto/buildinf.h +1 -1
  80. package/include/node/openssl/archs/solaris64-x86_64-gcc/no-asm/crypto/buildinf.h +1 -1
  81. package/include/node/openssl/e_os2.h +3 -2
  82. package/include/node/openssl/opensslv.h +2 -2
  83. package/include/node/openssl/ssl.h +1 -0
  84. package/include/node/openssl/sslerr.h +4 -1
  85. package/include/node/openssl/x509v3err.h +3 -1
  86. package/include/node/v8-internal.h +1 -0
  87. package/include/node/v8-version.h +3 -3
  88. package/include/node/v8.h +38 -3
  89. package/package.json +1 -1
  90. package/share/doc/node/gdbinit +5 -1
  91. package/share/doc/node/lldb_commands.py +17 -2
  92. package/share/man/man1/node.1 +8 -0
package/bin/node CHANGED
Binary file
@@ -36,7 +36,7 @@
36
36
 
37
37
  # Reset this number to 0 on major V8 upgrades.
38
38
  # Increment by one for each non-official patch applied to deps/v8.
39
- 'v8_embedder_string': '-node.19',
39
+ 'v8_embedder_string': '-node.14',
40
40
 
41
41
  ##### V8 defaults for Node.js #####
42
42
 
@@ -268,6 +268,7 @@
268
268
  ],
269
269
  'msvs_settings': {
270
270
  'VCCLCompilerTool': {
271
+ 'AdditionalOptions': ['/Zc:__cplusplus'],
271
272
  'BufferSecurityCheck': 'true',
272
273
  'DebugInformationFormat': 1, # /Z7 embed info in .obj files
273
274
  'ExceptionHandling': 0, # /EHsc
@@ -258,7 +258,9 @@
258
258
  'lib/internal/streams/passthrough.js',
259
259
  'lib/internal/streams/legacy.js',
260
260
  'lib/internal/streams/duplex.js',
261
+ 'lib/internal/streams/compose.js',
261
262
  'lib/internal/streams/readable.js',
263
+ 'lib/internal/streams/duplexify.js',
262
264
  'lib/internal/streams/from.js',
263
265
  'lib/internal/streams/pipeline.js',
264
266
  'lib/internal/streams/buffer_list.js',
@@ -402,7 +402,22 @@ enum Flags : uint64_t {
402
402
  kNoRegisterESMLoader = 1 << 3,
403
403
  // Set this flag to make Node.js track "raw" file descriptors, i.e. managed
404
404
  // by fs.open() and fs.close(), and close them during FreeEnvironment().
405
- kTrackUnmanagedFds = 1 << 4
405
+ kTrackUnmanagedFds = 1 << 4,
406
+ // Set this flag to force hiding console windows when spawning child
407
+ // processes. This is usually used when embedding Node.js in GUI programs on
408
+ // Windows.
409
+ kHideConsoleWindows = 1 << 5,
410
+ // Set this flag to disable loading native addons via `process.dlopen`.
411
+ // This environment flag is especially important for worker threads
412
+ // so that a worker thread can't load a native addon even if `execArgv`
413
+ // is overwritten and `--no-addons` is not specified but was specified
414
+ // for this Environment instance.
415
+ kNoNativeAddons = 1 << 6,
416
+ // Set this flag to disable searching modules from global paths like
417
+ // $HOME/.node_modules and $NODE_PATH. This is used by standalone apps that
418
+ // do not expect to have their behaviors changed because of globally
419
+ // installed modules.
420
+ kNoGlobalSearchPaths = 1 << 7
406
421
  };
407
422
  } // namespace EnvironmentFlags
408
423
 
@@ -1004,6 +1019,9 @@ class NODE_EXTERN CallbackScope {
1004
1019
  CallbackScope(v8::Isolate* isolate,
1005
1020
  v8::Local<v8::Object> resource,
1006
1021
  async_context asyncContext);
1022
+ CallbackScope(Environment* env,
1023
+ v8::Local<v8::Object> resource,
1024
+ async_context asyncContext);
1007
1025
  ~CallbackScope();
1008
1026
 
1009
1027
  void operator=(const CallbackScope&) = delete;
@@ -23,7 +23,7 @@
23
23
  #define SRC_NODE_VERSION_H_
24
24
 
25
25
  #define NODE_MAJOR_VERSION 16
26
- #define NODE_MINOR_VERSION 7
26
+ #define NODE_MINOR_VERSION 10
27
27
  #define NODE_PATCH_VERSION 0
28
28
 
29
29
  #define NODE_VERSION_IS_LTS 0
@@ -11,7 +11,7 @@
11
11
  */
12
12
 
13
13
  #define PLATFORM "platform: BSD-x86"
14
- #define DATE "built on: Thu Mar 25 15:42:28 2021 UTC"
14
+ #define DATE "built on: Tue Aug 24 15:07:53 2021 UTC"
15
15
 
16
16
  /*
17
17
  * Generate compiler_flags as an array of individual characters. This is a
@@ -11,7 +11,7 @@
11
11
  */
12
12
 
13
13
  #define PLATFORM "platform: BSD-x86"
14
- #define DATE "built on: Thu Mar 25 15:42:31 2021 UTC"
14
+ #define DATE "built on: Tue Aug 24 15:07:57 2021 UTC"
15
15
 
16
16
  /*
17
17
  * Generate compiler_flags as an array of individual characters. This is a
@@ -11,7 +11,7 @@
11
11
  */
12
12
 
13
13
  #define PLATFORM "platform: BSD-x86"
14
- #define DATE "built on: Thu Mar 25 15:42:33 2021 UTC"
14
+ #define DATE "built on: Tue Aug 24 15:08:02 2021 UTC"
15
15
 
16
16
  /*
17
17
  * Generate compiler_flags as an array of individual characters. This is a
@@ -11,7 +11,7 @@
11
11
  */
12
12
 
13
13
  #define PLATFORM "platform: BSD-x86_64"
14
- #define DATE "built on: Thu Mar 25 15:42:35 2021 UTC"
14
+ #define DATE "built on: Tue Aug 24 15:08:04 2021 UTC"
15
15
 
16
16
  /*
17
17
  * Generate compiler_flags as an array of individual characters. This is a
@@ -11,7 +11,7 @@
11
11
  */
12
12
 
13
13
  #define PLATFORM "platform: BSD-x86_64"
14
- #define DATE "built on: Thu Mar 25 15:42:41 2021 UTC"
14
+ #define DATE "built on: Tue Aug 24 15:08:15 2021 UTC"
15
15
 
16
16
  /*
17
17
  * Generate compiler_flags as an array of individual characters. This is a
@@ -11,7 +11,7 @@
11
11
  */
12
12
 
13
13
  #define PLATFORM "platform: BSD-x86_64"
14
- #define DATE "built on: Thu Mar 25 15:42:47 2021 UTC"
14
+ #define DATE "built on: Tue Aug 24 15:08:26 2021 UTC"
15
15
 
16
16
  /*
17
17
  * Generate compiler_flags as an array of individual characters. This is a
@@ -11,7 +11,7 @@
11
11
  */
12
12
 
13
13
  #define PLATFORM "platform: "
14
- #define DATE "built on: Thu Mar 25 15:45:00 2021 UTC"
14
+ #define DATE "built on: Tue Aug 24 15:12:40 2021 UTC"
15
15
 
16
16
  /*
17
17
  * Generate compiler_flags as an array of individual characters. This is a
@@ -11,7 +11,7 @@
11
11
  */
12
12
 
13
13
  #define PLATFORM "platform: "
14
- #define DATE "built on: Thu Mar 25 15:45:03 2021 UTC"
14
+ #define DATE "built on: Tue Aug 24 15:12:44 2021 UTC"
15
15
 
16
16
  /*
17
17
  * Generate compiler_flags as an array of individual characters. This is a
@@ -11,7 +11,7 @@
11
11
  */
12
12
 
13
13
  #define PLATFORM "platform: "
14
- #define DATE "built on: Thu Mar 25 15:45:05 2021 UTC"
14
+ #define DATE "built on: Tue Aug 24 15:12:48 2021 UTC"
15
15
 
16
16
  /*
17
17
  * Generate compiler_flags as an array of individual characters. This is a
@@ -11,7 +11,7 @@
11
11
  */
12
12
 
13
13
  #define PLATFORM "platform: VC-WIN64-ARM"
14
- #define DATE "built on: Thu Mar 25 15:45:06 2021 UTC"
14
+ #define DATE "built on: Tue Aug 24 15:12:50 2021 UTC"
15
15
 
16
16
  /*
17
17
  * Generate compiler_flags as an array of individual characters. This is a
@@ -11,7 +11,7 @@
11
11
  */
12
12
 
13
13
  #define PLATFORM "platform: "
14
- #define DATE "built on: Thu Mar 25 15:44:47 2021 UTC"
14
+ #define DATE "built on: Tue Aug 24 15:12:14 2021 UTC"
15
15
 
16
16
  /*
17
17
  * Generate compiler_flags as an array of individual characters. This is a
@@ -11,7 +11,7 @@
11
11
  */
12
12
 
13
13
  #define PLATFORM "platform: "
14
- #define DATE "built on: Thu Mar 25 15:44:53 2021 UTC"
14
+ #define DATE "built on: Tue Aug 24 15:12:26 2021 UTC"
15
15
 
16
16
  /*
17
17
  * Generate compiler_flags as an array of individual characters. This is a
@@ -11,7 +11,7 @@
11
11
  */
12
12
 
13
13
  #define PLATFORM "platform: "
14
- #define DATE "built on: Thu Mar 25 15:44:59 2021 UTC"
14
+ #define DATE "built on: Tue Aug 24 15:12:37 2021 UTC"
15
15
 
16
16
  /*
17
17
  * Generate compiler_flags as an array of individual characters. This is a
@@ -11,7 +11,7 @@
11
11
  */
12
12
 
13
13
  #define PLATFORM "platform: aix-gcc"
14
- #define DATE "built on: Thu Mar 25 15:42:17 2021 UTC"
14
+ #define DATE "built on: Tue Aug 24 15:07:32 2021 UTC"
15
15
 
16
16
  /*
17
17
  * Generate compiler_flags as an array of individual characters. This is a
@@ -11,7 +11,7 @@
11
11
  */
12
12
 
13
13
  #define PLATFORM "platform: aix-gcc"
14
- #define DATE "built on: Thu Mar 25 15:42:19 2021 UTC"
14
+ #define DATE "built on: Tue Aug 24 15:07:35 2021 UTC"
15
15
 
16
16
  /*
17
17
  * Generate compiler_flags as an array of individual characters. This is a
@@ -11,7 +11,7 @@
11
11
  */
12
12
 
13
13
  #define PLATFORM "platform: aix-gcc"
14
- #define DATE "built on: Thu Mar 25 15:42:21 2021 UTC"
14
+ #define DATE "built on: Tue Aug 24 15:07:39 2021 UTC"
15
15
 
16
16
  /*
17
17
  * Generate compiler_flags as an array of individual characters. This is a
@@ -11,7 +11,7 @@
11
11
  */
12
12
 
13
13
  #define PLATFORM "platform: aix64-gcc"
14
- #define DATE "built on: Thu Mar 25 15:42:22 2021 UTC"
14
+ #define DATE "built on: Tue Aug 24 15:07:42 2021 UTC"
15
15
 
16
16
  /*
17
17
  * Generate compiler_flags as an array of individual characters. This is a
@@ -11,7 +11,7 @@
11
11
  */
12
12
 
13
13
  #define PLATFORM "platform: aix64-gcc"
14
- #define DATE "built on: Thu Mar 25 15:42:25 2021 UTC"
14
+ #define DATE "built on: Tue Aug 24 15:07:46 2021 UTC"
15
15
 
16
16
  /*
17
17
  * Generate compiler_flags as an array of individual characters. This is a
@@ -11,7 +11,7 @@
11
11
  */
12
12
 
13
13
  #define PLATFORM "platform: aix64-gcc"
14
- #define DATE "built on: Thu Mar 25 15:42:27 2021 UTC"
14
+ #define DATE "built on: Tue Aug 24 15:07:50 2021 UTC"
15
15
 
16
16
  /*
17
17
  * Generate compiler_flags as an array of individual characters. This is a
@@ -11,7 +11,7 @@
11
11
  */
12
12
 
13
13
  #define PLATFORM "platform: darwin-i386-cc"
14
- #define DATE "built on: Thu Mar 25 15:43:01 2021 UTC"
14
+ #define DATE "built on: Tue Aug 24 15:08:53 2021 UTC"
15
15
 
16
16
  /*
17
17
  * Generate compiler_flags as an array of individual characters. This is a
@@ -11,7 +11,7 @@
11
11
  */
12
12
 
13
13
  #define PLATFORM "platform: darwin-i386-cc"
14
- #define DATE "built on: Thu Mar 25 15:43:03 2021 UTC"
14
+ #define DATE "built on: Tue Aug 24 15:08:58 2021 UTC"
15
15
 
16
16
  /*
17
17
  * Generate compiler_flags as an array of individual characters. This is a
@@ -11,7 +11,7 @@
11
11
  */
12
12
 
13
13
  #define PLATFORM "platform: darwin-i386-cc"
14
- #define DATE "built on: Thu Mar 25 15:43:06 2021 UTC"
14
+ #define DATE "built on: Tue Aug 24 15:09:02 2021 UTC"
15
15
 
16
16
  /*
17
17
  * Generate compiler_flags as an array of individual characters. This is a
@@ -11,7 +11,7 @@
11
11
  */
12
12
 
13
13
  #define PLATFORM "platform: darwin64-arm64-cc"
14
- #define DATE "built on: Thu Mar 25 15:43:07 2021 UTC"
14
+ #define DATE "built on: Tue Aug 24 15:09:05 2021 UTC"
15
15
 
16
16
  /*
17
17
  * Generate compiler_flags as an array of individual characters. This is a
@@ -11,7 +11,7 @@
11
11
  */
12
12
 
13
13
  #define PLATFORM "platform: darwin64-arm64-cc"
14
- #define DATE "built on: Thu Mar 25 15:43:09 2021 UTC"
14
+ #define DATE "built on: Tue Aug 24 15:09:09 2021 UTC"
15
15
 
16
16
  /*
17
17
  * Generate compiler_flags as an array of individual characters. This is a
@@ -11,7 +11,7 @@
11
11
  */
12
12
 
13
13
  #define PLATFORM "platform: darwin64-arm64-cc"
14
- #define DATE "built on: Thu Mar 25 15:43:12 2021 UTC"
14
+ #define DATE "built on: Tue Aug 24 15:09:13 2021 UTC"
15
15
 
16
16
  /*
17
17
  * Generate compiler_flags as an array of individual characters. This is a
@@ -11,7 +11,7 @@
11
11
  */
12
12
 
13
13
  #define PLATFORM "platform: darwin64-x86_64-cc"
14
- #define DATE "built on: Thu Mar 25 15:42:48 2021 UTC"
14
+ #define DATE "built on: Tue Aug 24 15:08:29 2021 UTC"
15
15
 
16
16
  /*
17
17
  * Generate compiler_flags as an array of individual characters. This is a
@@ -11,7 +11,7 @@
11
11
  */
12
12
 
13
13
  #define PLATFORM "platform: darwin64-x86_64-cc"
14
- #define DATE "built on: Thu Mar 25 15:42:54 2021 UTC"
14
+ #define DATE "built on: Tue Aug 24 15:08:40 2021 UTC"
15
15
 
16
16
  /*
17
17
  * Generate compiler_flags as an array of individual characters. This is a
@@ -11,7 +11,7 @@
11
11
  */
12
12
 
13
13
  #define PLATFORM "platform: darwin64-x86_64-cc"
14
- #define DATE "built on: Thu Mar 25 15:42:59 2021 UTC"
14
+ #define DATE "built on: Tue Aug 24 15:08:51 2021 UTC"
15
15
 
16
16
  /*
17
17
  * Generate compiler_flags as an array of individual characters. This is a
@@ -11,7 +11,7 @@
11
11
  */
12
12
 
13
13
  #define PLATFORM "platform: linux-aarch64"
14
- #define DATE "built on: Thu Mar 25 15:43:13 2021 UTC"
14
+ #define DATE "built on: Tue Aug 24 15:09:16 2021 UTC"
15
15
 
16
16
  /*
17
17
  * Generate compiler_flags as an array of individual characters. This is a
@@ -11,7 +11,7 @@
11
11
  */
12
12
 
13
13
  #define PLATFORM "platform: linux-aarch64"
14
- #define DATE "built on: Thu Mar 25 15:43:15 2021 UTC"
14
+ #define DATE "built on: Tue Aug 24 15:09:20 2021 UTC"
15
15
 
16
16
  /*
17
17
  * Generate compiler_flags as an array of individual characters. This is a
@@ -11,7 +11,7 @@
11
11
  */
12
12
 
13
13
  #define PLATFORM "platform: linux-aarch64"
14
- #define DATE "built on: Thu Mar 25 15:43:17 2021 UTC"
14
+ #define DATE "built on: Tue Aug 24 15:09:24 2021 UTC"
15
15
 
16
16
  /*
17
17
  * Generate compiler_flags as an array of individual characters. This is a
@@ -11,7 +11,7 @@
11
11
  */
12
12
 
13
13
  #define PLATFORM "platform: linux-armv4"
14
- #define DATE "built on: Thu Mar 25 15:43:19 2021 UTC"
14
+ #define DATE "built on: Tue Aug 24 15:09:27 2021 UTC"
15
15
 
16
16
  /*
17
17
  * Generate compiler_flags as an array of individual characters. This is a
@@ -11,7 +11,7 @@
11
11
  */
12
12
 
13
13
  #define PLATFORM "platform: linux-armv4"
14
- #define DATE "built on: Thu Mar 25 15:43:21 2021 UTC"
14
+ #define DATE "built on: Tue Aug 24 15:09:31 2021 UTC"
15
15
 
16
16
  /*
17
17
  * Generate compiler_flags as an array of individual characters. This is a
@@ -11,7 +11,7 @@
11
11
  */
12
12
 
13
13
  #define PLATFORM "platform: linux-armv4"
14
- #define DATE "built on: Thu Mar 25 15:43:23 2021 UTC"
14
+ #define DATE "built on: Tue Aug 24 15:09:35 2021 UTC"
15
15
 
16
16
  /*
17
17
  * Generate compiler_flags as an array of individual characters. This is a
@@ -11,7 +11,7 @@
11
11
  */
12
12
 
13
13
  #define PLATFORM "platform: linux-elf"
14
- #define DATE "built on: Thu Mar 25 15:43:25 2021 UTC"
14
+ #define DATE "built on: Tue Aug 24 15:09:38 2021 UTC"
15
15
 
16
16
  /*
17
17
  * Generate compiler_flags as an array of individual characters. This is a
@@ -11,7 +11,7 @@
11
11
  */
12
12
 
13
13
  #define PLATFORM "platform: linux-elf"
14
- #define DATE "built on: Thu Mar 25 15:43:27 2021 UTC"
14
+ #define DATE "built on: Tue Aug 24 15:09:42 2021 UTC"
15
15
 
16
16
  /*
17
17
  * Generate compiler_flags as an array of individual characters. This is a
@@ -11,7 +11,7 @@
11
11
  */
12
12
 
13
13
  #define PLATFORM "platform: linux-elf"
14
- #define DATE "built on: Thu Mar 25 15:43:30 2021 UTC"
14
+ #define DATE "built on: Tue Aug 24 15:09:47 2021 UTC"
15
15
 
16
16
  /*
17
17
  * Generate compiler_flags as an array of individual characters. This is a
@@ -11,7 +11,7 @@
11
11
  */
12
12
 
13
13
  #define PLATFORM "platform: linux-ppc"
14
- #define DATE "built on: Thu Mar 25 15:43:57 2021 UTC"
14
+ #define DATE "built on: Tue Aug 24 15:10:39 2021 UTC"
15
15
 
16
16
  /*
17
17
  * Generate compiler_flags as an array of individual characters. This is a
@@ -11,7 +11,7 @@
11
11
  */
12
12
 
13
13
  #define PLATFORM "platform: linux-ppc"
14
- #define DATE "built on: Thu Mar 25 15:43:59 2021 UTC"
14
+ #define DATE "built on: Tue Aug 24 15:10:43 2021 UTC"
15
15
 
16
16
  /*
17
17
  * Generate compiler_flags as an array of individual characters. This is a
@@ -11,7 +11,7 @@
11
11
  */
12
12
 
13
13
  #define PLATFORM "platform: linux-ppc"
14
- #define DATE "built on: Thu Mar 25 15:44:01 2021 UTC"
14
+ #define DATE "built on: Tue Aug 24 15:10:47 2021 UTC"
15
15
 
16
16
  /*
17
17
  * Generate compiler_flags as an array of individual characters. This is a
@@ -11,7 +11,7 @@
11
11
  */
12
12
 
13
13
  #define PLATFORM "platform: linux-ppc64"
14
- #define DATE "built on: Thu Mar 25 15:44:02 2021 UTC"
14
+ #define DATE "built on: Tue Aug 24 15:10:49 2021 UTC"
15
15
 
16
16
  /*
17
17
  * Generate compiler_flags as an array of individual characters. This is a
@@ -11,7 +11,7 @@
11
11
  */
12
12
 
13
13
  #define PLATFORM "platform: linux-ppc64"
14
- #define DATE "built on: Thu Mar 25 15:44:05 2021 UTC"
14
+ #define DATE "built on: Tue Aug 24 15:10:54 2021 UTC"
15
15
 
16
16
  /*
17
17
  * Generate compiler_flags as an array of individual characters. This is a
@@ -11,7 +11,7 @@
11
11
  */
12
12
 
13
13
  #define PLATFORM "platform: linux-ppc64"
14
- #define DATE "built on: Thu Mar 25 15:44:07 2021 UTC"
14
+ #define DATE "built on: Tue Aug 24 15:10:58 2021 UTC"
15
15
 
16
16
  /*
17
17
  * Generate compiler_flags as an array of individual characters. This is a
@@ -11,7 +11,7 @@
11
11
  */
12
12
 
13
13
  #define PLATFORM "platform: linux-ppc64le"
14
- #define DATE "built on: Thu Mar 25 15:44:08 2021 UTC"
14
+ #define DATE "built on: Tue Aug 24 15:11:01 2021 UTC"
15
15
 
16
16
  /*
17
17
  * Generate compiler_flags as an array of individual characters. This is a
@@ -11,7 +11,7 @@
11
11
  */
12
12
 
13
13
  #define PLATFORM "platform: linux-ppc64le"
14
- #define DATE "built on: Thu Mar 25 15:44:11 2021 UTC"
14
+ #define DATE "built on: Tue Aug 24 15:11:05 2021 UTC"
15
15
 
16
16
  /*
17
17
  * Generate compiler_flags as an array of individual characters. This is a
@@ -11,7 +11,7 @@
11
11
  */
12
12
 
13
13
  #define PLATFORM "platform: linux-ppc64le"
14
- #define DATE "built on: Thu Mar 25 15:44:13 2021 UTC"
14
+ #define DATE "built on: Tue Aug 24 15:11:09 2021 UTC"
15
15
 
16
16
  /*
17
17
  * Generate compiler_flags as an array of individual characters. This is a
@@ -11,7 +11,7 @@
11
11
  */
12
12
 
13
13
  #define PLATFORM "platform: linux-x32"
14
- #define DATE "built on: Thu Mar 25 15:43:31 2021 UTC"
14
+ #define DATE "built on: Tue Aug 24 15:09:50 2021 UTC"
15
15
 
16
16
  /*
17
17
  * Generate compiler_flags as an array of individual characters. This is a
@@ -11,7 +11,7 @@
11
11
  */
12
12
 
13
13
  #define PLATFORM "platform: linux-x32"
14
- #define DATE "built on: Thu Mar 25 15:43:37 2021 UTC"
14
+ #define DATE "built on: Tue Aug 24 15:10:01 2021 UTC"
15
15
 
16
16
  /*
17
17
  * Generate compiler_flags as an array of individual characters. This is a
@@ -11,7 +11,7 @@
11
11
  */
12
12
 
13
13
  #define PLATFORM "platform: linux-x32"
14
- #define DATE "built on: Thu Mar 25 15:43:43 2021 UTC"
14
+ #define DATE "built on: Tue Aug 24 15:10:12 2021 UTC"
15
15
 
16
16
  /*
17
17
  * Generate compiler_flags as an array of individual characters. This is a
@@ -11,7 +11,7 @@
11
11
  */
12
12
 
13
13
  #define PLATFORM "platform: linux-x86_64"
14
- #define DATE "built on: Thu Mar 25 15:43:44 2021 UTC"
14
+ #define DATE "built on: Tue Aug 24 15:10:14 2021 UTC"
15
15
 
16
16
  /*
17
17
  * Generate compiler_flags as an array of individual characters. This is a
@@ -11,7 +11,7 @@
11
11
  */
12
12
 
13
13
  #define PLATFORM "platform: linux-x86_64"
14
- #define DATE "built on: Thu Mar 25 15:43:50 2021 UTC"
14
+ #define DATE "built on: Tue Aug 24 15:10:26 2021 UTC"
15
15
 
16
16
  /*
17
17
  * Generate compiler_flags as an array of individual characters. This is a
@@ -11,7 +11,7 @@
11
11
  */
12
12
 
13
13
  #define PLATFORM "platform: linux-x86_64"
14
- #define DATE "built on: Thu Mar 25 15:43:55 2021 UTC"
14
+ #define DATE "built on: Tue Aug 24 15:10:36 2021 UTC"
15
15
 
16
16
  /*
17
17
  * Generate compiler_flags as an array of individual characters. This is a
@@ -11,7 +11,7 @@
11
11
  */
12
12
 
13
13
  #define PLATFORM "platform: linux32-s390x"
14
- #define DATE "built on: Thu Mar 25 15:44:14 2021 UTC"
14
+ #define DATE "built on: Tue Aug 24 15:11:12 2021 UTC"
15
15
 
16
16
  /*
17
17
  * Generate compiler_flags as an array of individual characters. This is a