build: remove unused 'component' GYP option
PR-URL: https://github.com/libuv/libuv/pull/548 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
This commit is contained in:
parent
01999559cf
commit
2a98e76b45
@ -4,7 +4,6 @@
|
|||||||
'target_arch%': 'ia32', # set v8's target architecture
|
'target_arch%': 'ia32', # set v8's target architecture
|
||||||
'host_arch%': 'ia32', # set v8's host architecture
|
'host_arch%': 'ia32', # set v8's host architecture
|
||||||
'uv_library%': 'static_library', # allow override to 'shared_library' for DLL/.so builds
|
'uv_library%': 'static_library', # allow override to 'shared_library' for DLL/.so builds
|
||||||
'component%': 'static_library', # NB. these names match with what V8 expects
|
|
||||||
'msvs_multi_core_compile': '0', # we do enable multicore compiles, but not using the V8 way
|
'msvs_multi_core_compile': '0', # we do enable multicore compiles, but not using the V8 way
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|||||||
@ -83,9 +83,6 @@ if __name__ == '__main__':
|
|||||||
if not any(a.startswith('-Duv_library=') for a in args):
|
if not any(a.startswith('-Duv_library=') for a in args):
|
||||||
args.append('-Duv_library=static_library')
|
args.append('-Duv_library=static_library')
|
||||||
|
|
||||||
if not any(a.startswith('-Dcomponent=') for a in args):
|
|
||||||
args.append('-Dcomponent=static_library')
|
|
||||||
|
|
||||||
# Some platforms (OpenBSD for example) don't have multiprocessing.synchronize
|
# Some platforms (OpenBSD for example) don't have multiprocessing.synchronize
|
||||||
# so gyp must be run with --no-parallel
|
# so gyp must be run with --no-parallel
|
||||||
if not gyp_parallel_support:
|
if not gyp_parallel_support:
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user