From 30fd3d25dfa0cb759da77e9725e6cec4af1415b9 Mon Sep 17 00:00:00 2001 From: Glen Keane Date: Sat, 24 Feb 2018 22:38:04 +0000 Subject: src: Remove lttng support. This cleans up and removes lttng support completely. Recent discussion on a PR to deprecate lttng suggested that we remove it completely pending feedback from the TSC. This should be considered a non breaking change, as a recent PR reveals that compiling with this system has been broken for nearly two years. Refs: https://github.com/nodejs/node/issues/18971 Refs: https://github.com/nodejs/node/pull/18975 Refs: https://github.com/nodejs/node/pull/18945 PR-URL: https://github.com/nodejs/node/pull/18982 Reviewed-By: Tiancheng "Timothy" Gu Reviewed-By: Luigi Pinca Reviewed-By: Anna Henningsen Reviewed-By: Colin Ihrig Reviewed-By: Jackson Tian Reviewed-By: Evan Lucas Reviewed-By: Matteo Collina Reviewed-By: James M Snell --- configure | 14 -------------- 1 file changed, 14 deletions(-) (limited to 'configure') diff --git a/configure b/configure index 8a9f2044cb..5d2e800015 100755 --- a/configure +++ b/configure @@ -383,11 +383,6 @@ parser.add_option('--with-dtrace', dest='with_dtrace', help='build with DTrace (default is true on sunos and darwin)') -parser.add_option('--with-lttng', - action='store_true', - dest='with_lttng', - help='build with Lttng (Only supported on Linux)') - parser.add_option('--with-etw', action='store_true', dest='with_etw', @@ -908,15 +903,6 @@ def configure_node(o): else: o['variables']['node_use_dtrace'] = 'false' - # Enable Lttng if --with-lttng was defined. Use logic similar to - # ETW for windows. Lttng is only available on the Linux platform. - if flavor == 'linux': - o['variables']['node_use_lttng'] = b(options.with_lttng) - elif options.with_lttng: - raise Exception('lttng is only supported on Linux.') - else: - o['variables']['node_use_lttng'] = 'false' - if options.no_ifaddrs: o['defines'] += ['SUNOS_NO_IFADDRS'] -- cgit v1.2.3