From 2a98e76b4560db3954510ea34b286e14705a590c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sa=C3=BAl=20Ibarra=20Corretg=C3=A9?= Date: Thu, 24 Sep 2015 10:23:22 +0200 Subject: [PATCH] build: remove unused 'component' GYP option PR-URL: https://github.com/libuv/libuv/pull/548 Reviewed-By: Ben Noordhuis --- common.gypi | 1 - gyp_uv.py | 3 --- 2 files changed, 4 deletions(-) diff --git a/common.gypi b/common.gypi index 392c8595..7cebcde5 100644 --- a/common.gypi +++ b/common.gypi @@ -4,7 +4,6 @@ 'target_arch%': 'ia32', # set v8's target architecture 'host_arch%': 'ia32', # set v8's host architecture '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 }, diff --git a/gyp_uv.py b/gyp_uv.py index 0491ff87..39933f62 100755 --- a/gyp_uv.py +++ b/gyp_uv.py @@ -83,9 +83,6 @@ if __name__ == '__main__': if not any(a.startswith('-Duv_library=') for a in args): 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 # so gyp must be run with --no-parallel if not gyp_parallel_support: