mirror of
https://github.com/libuv/libuv
synced 2025-03-28 21:13:16 +00:00
zos: use gyp OS label "os390" on z/OS
This is what `uname` on the system actually displays. Also, other gyp based projects use 'os390' PR-URL: https://github.com/libuv/libuv/pull/1207 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Saúl Ibarra Corretgé <saghul@gmail.com>
This commit is contained in:
parent
c722b8d278
commit
c5bb773bdd
@ -35,7 +35,7 @@
|
||||
'OTHER_CFLAGS': [ '-Wno-strict-aliasing' ],
|
||||
},
|
||||
'conditions': [
|
||||
['OS != "zos"', {
|
||||
['OS != "os390"', {
|
||||
'cflags': [ '-O0', '-fwrapv' ]
|
||||
}],
|
||||
['OS == "android"', {
|
||||
@ -154,7 +154,7 @@
|
||||
'cflags': [ '-pthreads' ],
|
||||
'ldflags': [ '-pthreads' ],
|
||||
}],
|
||||
[ 'OS not in "solaris android zos"', {
|
||||
[ 'OS not in "solaris android os390"', {
|
||||
'cflags': [ '-pthread' ],
|
||||
'ldflags': [ '-pthread' ],
|
||||
}],
|
||||
|
24
uv.gyp
24
uv.gyp
@ -10,10 +10,10 @@
|
||||
['OS=="solaris"', {
|
||||
'cflags': [ '-pthreads' ],
|
||||
}],
|
||||
['OS not in "solaris android zos"', {
|
||||
['OS not in "solaris android os390"', {
|
||||
'cflags': [ '-pthread' ],
|
||||
}],
|
||||
['OS in "zos"', {
|
||||
['OS in "os390"', {
|
||||
'defines': [
|
||||
'_UNIX03_THREADS',
|
||||
'_UNIX03_SOURCE',
|
||||
@ -172,10 +172,10 @@
|
||||
['OS=="solaris"', {
|
||||
'ldflags': [ '-pthreads' ],
|
||||
}],
|
||||
[ 'OS=="zos" and uv_library=="shared_library"', {
|
||||
[ 'OS=="os390" and uv_library=="shared_library"', {
|
||||
'ldflags': [ '-Wl,DLL' ],
|
||||
}],
|
||||
['OS != "solaris" and OS != "android" and OS != "zos"', {
|
||||
['OS != "solaris" and OS != "android" and OS != "os390"', {
|
||||
'ldflags': [ '-pthread' ],
|
||||
}],
|
||||
],
|
||||
@ -183,14 +183,14 @@
|
||||
'conditions': [
|
||||
['uv_library=="shared_library"', {
|
||||
'conditions': [
|
||||
['OS=="zos"', {
|
||||
['OS=="os390"', {
|
||||
'cflags': [ '-qexportall' ],
|
||||
}, {
|
||||
'cflags': [ '-fPIC' ],
|
||||
}],
|
||||
],
|
||||
}],
|
||||
['uv_library=="shared_library" and OS!="mac" and OS!="zos"', {
|
||||
['uv_library=="shared_library" and OS!="mac" and OS!="os390"', {
|
||||
# This will cause gyp to set soname
|
||||
# Must correspond with UV_VERSION_MAJOR
|
||||
# in include/uv-version.h
|
||||
@ -201,7 +201,7 @@
|
||||
[ 'OS in "linux mac ios android"', {
|
||||
'sources': [ 'src/unix/proctitle.c' ],
|
||||
}],
|
||||
[ 'OS != "zos"', {
|
||||
[ 'OS != "os390"', {
|
||||
'cflags': [
|
||||
'-fvisibility=hidden',
|
||||
'-g',
|
||||
@ -224,7 +224,7 @@
|
||||
'_DARWIN_UNLIMITED_SELECT=1',
|
||||
]
|
||||
}],
|
||||
[ 'OS!="mac" and OS!="zos"', {
|
||||
[ 'OS!="mac" and OS!="os390"', {
|
||||
# Enable on all platforms except OS X. The antique gcc/clang that
|
||||
# ships with Xcode emits waaaay too many false positives.
|
||||
'cflags': [ '-Wstrict-aliasing' ],
|
||||
@ -304,7 +304,7 @@
|
||||
['uv_library=="shared_library"', {
|
||||
'defines': [ 'BUILDING_UV_SHARED=1' ]
|
||||
}],
|
||||
['OS=="zos"', {
|
||||
['OS=="os390"', {
|
||||
'sources': [
|
||||
'src/unix/pthread-fixes.c',
|
||||
'src/unix/pthread-barrier.c',
|
||||
@ -470,7 +470,7 @@
|
||||
'test/runner-unix.h',
|
||||
],
|
||||
'conditions': [
|
||||
[ 'OS != "zos"', {
|
||||
[ 'OS != "os390"', {
|
||||
'defines': [ '_GNU_SOURCE' ],
|
||||
'cflags': [ '-Wno-long-long' ],
|
||||
'xcode_settings': {
|
||||
@ -499,7 +499,7 @@
|
||||
['uv_library=="shared_library"', {
|
||||
'defines': [ 'USING_UV_SHARED=1' ],
|
||||
'conditions': [
|
||||
[ 'OS == "zos"', {
|
||||
[ 'OS == "os390"', {
|
||||
'cflags': [ '-Wc,DLL' ],
|
||||
}],
|
||||
],
|
||||
@ -560,7 +560,7 @@
|
||||
['uv_library=="shared_library"', {
|
||||
'defines': [ 'USING_UV_SHARED=1' ],
|
||||
'conditions': [
|
||||
[ 'OS == "zos"', {
|
||||
[ 'OS == "os390"', {
|
||||
'cflags': [ '-Wc,DLL' ],
|
||||
}],
|
||||
],
|
||||
|
Loading…
x
Reference in New Issue
Block a user