node-linux-armv7l 16.9.0 → 16.11.1

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.
@@ -86,51 +86,80 @@ path. Add it with -I<path> to the command line
86
86
  # define V8_OS_ANDROID 1
87
87
  # define V8_OS_LINUX 1
88
88
  # define V8_OS_POSIX 1
89
+ # define V8_OS_STRING "android"
90
+
89
91
  #elif defined(__APPLE__)
90
92
  # define V8_OS_BSD 1
91
93
  # define V8_OS_MACOSX 1
92
94
  # define V8_OS_POSIX 1
93
95
  # if defined(TARGET_OS_IPHONE) && TARGET_OS_IPHONE
94
96
  # define V8_OS_IOS 1
97
+ # define V8_OS_STRING "ios"
98
+ # else
99
+ # define V8_OS_STRING "macos"
95
100
  # endif // defined(TARGET_OS_IPHONE) && TARGET_OS_IPHONE
101
+
96
102
  #elif defined(__CYGWIN__)
97
103
  # define V8_OS_CYGWIN 1
98
104
  # define V8_OS_POSIX 1
105
+ # define V8_OS_STRING "cygwin"
106
+
99
107
  #elif defined(__linux__)
100
108
  # define V8_OS_LINUX 1
101
109
  # define V8_OS_POSIX 1
110
+ # define V8_OS_STRING "linux"
111
+
102
112
  #elif defined(__sun)
103
113
  # define V8_OS_POSIX 1
104
114
  # define V8_OS_SOLARIS 1
115
+ # define V8_OS_STRING "sun"
116
+
105
117
  #elif defined(STARBOARD)
106
118
  # define V8_OS_STARBOARD 1
119
+ # define V8_OS_STRING "starboard"
120
+
107
121
  #elif defined(_AIX)
108
- #define V8_OS_POSIX 1
109
- #define V8_OS_AIX 1
122
+ # define V8_OS_POSIX 1
123
+ # define V8_OS_AIX 1
124
+ # define V8_OS_STRING "aix"
125
+
110
126
  #elif defined(__FreeBSD__)
111
127
  # define V8_OS_BSD 1
112
128
  # define V8_OS_FREEBSD 1
113
129
  # define V8_OS_POSIX 1
130
+ # define V8_OS_STRING "freebsd"
131
+
114
132
  #elif defined(__Fuchsia__)
115
133
  # define V8_OS_FUCHSIA 1
116
134
  # define V8_OS_POSIX 1
135
+ # define V8_OS_STRING "fuchsia"
136
+
117
137
  #elif defined(__DragonFly__)
118
138
  # define V8_OS_BSD 1
119
139
  # define V8_OS_DRAGONFLYBSD 1
120
140
  # define V8_OS_POSIX 1
141
+ # define V8_OS_STRING "dragonflybsd"
142
+
121
143
  #elif defined(__NetBSD__)
122
144
  # define V8_OS_BSD 1
123
145
  # define V8_OS_NETBSD 1
124
146
  # define V8_OS_POSIX 1
147
+ # define V8_OS_STRING "netbsd"
148
+
125
149
  #elif defined(__OpenBSD__)
126
150
  # define V8_OS_BSD 1
127
151
  # define V8_OS_OPENBSD 1
128
152
  # define V8_OS_POSIX 1
153
+ # define V8_OS_STRING "openbsd"
154
+
129
155
  #elif defined(__QNXNTO__)
130
156
  # define V8_OS_POSIX 1
131
157
  # define V8_OS_QNX 1
158
+ # define V8_OS_STRING "qnx"
159
+
132
160
  #elif defined(_WIN32)
133
161
  # define V8_OS_WIN 1
162
+ # define V8_OS_STRING "windows"
134
163
  #endif
135
164
 
136
165
  // -----------------------------------------------------------------------------
@@ -195,6 +224,22 @@ path. Add it with -I<path> to the command line
195
224
 
196
225
  #endif // V8_HAVE_TARGET_OS
197
226
 
227
+ #if defined(V8_TARGET_OS_ANDROID)
228
+ # define V8_TARGET_OS_STRING "android"
229
+ #elif defined(V8_TARGET_OS_FUCHSIA)
230
+ # define V8_TARGET_OS_STRING "fuchsia"
231
+ #elif defined(V8_TARGET_OS_IOS)
232
+ # define V8_TARGET_OS_STRING "ios"
233
+ #elif defined(V8_TARGET_OS_LINUX)
234
+ # define V8_TARGET_OS_STRING "linux"
235
+ #elif defined(V8_TARGET_OS_MACOSX)
236
+ # define V8_TARGET_OS_STRING "macos"
237
+ #elif defined(V8_TARGET_OS_WINDOWS)
238
+ # define V8_TARGET_OS_STRING "windows"
239
+ #else
240
+ # define V8_TARGET_OS_STRING "unknown"
241
+ #endif
242
+
198
243
  // -----------------------------------------------------------------------------
199
244
  // C library detection
200
245
  //
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "node-linux-armv7l",
3
- "version": "v16.9.0",
3
+ "version": "v16.11.1",
4
4
  "description": "node",
5
5
  "bin": {
6
6
  "node": "bin/node"
@@ -277,6 +277,14 @@ Silence deprecation warnings.
277
277
  Disable runtime checks for `async_hooks`.
278
278
  These will still be enabled dynamically when `async_hooks` is enabled.
279
279
  .
280
+ .It Fl -no-addons
281
+ Disable the `node-addons` exports condition as well as disable loading native
282
+ addons. When `--no-addons` is specified, calling `process.dlopen` or requiring
283
+ a native C++ addon will fail and throw an exception.
284
+ .
285
+ .It Fl -no-global-search-paths
286
+ Do not search modules from global paths.
287
+ .
280
288
  .It Fl -no-warnings
281
289
  Silence all process warnings (including deprecations).
282
290
  .