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 92b53a7 commit b8ea955Copy full SHA for b8ea955
Makefile
@@ -946,9 +946,6 @@ else
946
ifeq ($(findstring s390x,$(UNAME_M)),s390x)
947
DESTCPU ?= s390x
948
else
949
-ifeq ($(findstring s390,$(UNAME_M)),s390)
950
-DESTCPU ?= s390
951
-else
952
ifeq ($(findstring OS/390,$(shell uname -s)),OS/390)
953
954
@@ -982,7 +979,6 @@ endif
982
979
endif
983
980
984
981
985
-endif
986
ifeq ($(DESTCPU),x64)
987
ARCH=x64
988
@@ -995,9 +991,6 @@ else
995
991
ifeq ($(DESTCPU),ppc64)
996
992
ARCH=ppc64
997
993
998
-ifeq ($(DESTCPU),s390)
999
-ARCH=s390
1000
1001
994
ifeq ($(DESTCPU),s390x)
1002
ARCH=s390x
1003
@@ -1015,7 +1008,6 @@ endif
1015
1008
1016
1009
1017
1010
1018
1019
1011
1020
1012
# node and v8 use different arch names (e.g. node 'x86' vs v8 'ia32').
1021
1013
# pass the proper v8 arch name to $V8_ARCH based on user-specified $DESTCPU.
doc/api/os.md
@@ -55,8 +55,7 @@ added: v0.5.0
55
56
Returns the operating system CPU architecture for which the Node.js binary was
57
compiled. Possible values are `'arm'`, `'arm64'`, `'ia32'`, `'loong64'`,
58
-`'mips'`, `'mipsel'`, `'ppc64'`, `'riscv64'`, `'s390'`, `'s390x'`,
59
-and `'x64'`.
+`'mips'`, `'mipsel'`, `'ppc64'`, `'riscv64'`, `'s390x'`, and `'x64'`.
60
61
The return value is equivalent to [`process.arch`][].
62
@@ -257,7 +256,7 @@ added:
257
256
* Returns: {string}
258
259
Returns the machine type as a string, such as `arm`, `arm64`, `aarch64`,
260
-`mips`, `mips64`, `ppc64`, `ppc64le`, `s390`, `s390x`, `i386`, `i686`, `x86_64`.
+`mips`, `mips64`, `ppc64`, `ppc64le`, `s390x`, `i386`, `i686`, `x86_64`.
261
262
On POSIX systems, the machine type is determined by calling
263
[`uname(3)`][]. On Windows, `RtlGetVersion()` is used, and if it is not
tools/v8_gypfiles/v8.gyp
@@ -791,12 +791,12 @@
791
}],
792
['v8_target_arch=="s390x"', {
793
'sources': [
794
- '<!@pymod_do_main(GN-scraper "<(V8_ROOT)/BUILD.gn" "v8_header_set.\\"v8_internal_headers\\".*?v8_enable_i18n_support.*?v8_current_cpu == \\"s390\\".*?sources \\+= ")',
+ '<!@pymod_do_main(GN-scraper "<(V8_ROOT)/BUILD.gn" "v8_header_set.\\"v8_internal_headers\\".*?v8_enable_i18n_support.*?v8_current_cpu == \\"s390x\\".*?sources \\+= ")',
795
],
796
'conditions': [
797
['v8_enable_sparkplug==1', {
798
799
- '<!@pymod_do_main(GN-scraper "<(V8_ROOT)/BUILD.gn" "v8_header_set.\\"v8_internal_headers\\".*?v8_enable_i18n_support.*?v8_current_cpu == \\"s390\\".*?v8_enable_sparkplug.*?sources \\+= ")',
+ '<!@pymod_do_main(GN-scraper "<(V8_ROOT)/BUILD.gn" "v8_header_set.\\"v8_internal_headers\\".*?v8_enable_i18n_support.*?v8_current_cpu == \\"s390x\\".*?v8_enable_sparkplug.*?sources \\+= ")',
800
801
802
@@ -1165,7 +1165,7 @@
1165
1166
1167
1168
- '<!@pymod_do_main(GN-scraper "<(V8_ROOT)/BUILD.gn" "\\"v8_base_without_compiler.*?v8_enable_wasm_gdb_remote_debugging.*?v8_current_cpu == \\"s390\\".*?sources \\+= ")',
+ '<!@pymod_do_main(GN-scraper "<(V8_ROOT)/BUILD.gn" "\\"v8_base_without_compiler.*?v8_enable_wasm_gdb_remote_debugging.*?v8_current_cpu == \\"s390x\\".*?sources \\+= ")',
1169
1170
1171
['v8_target_arch=="riscv64"', {
0 commit comments