2020-02-25 16:22:47 +00:00
|
|
|
From 0b315d55b13d098ce8f3e96d501aeb33152a9e00 Mon Sep 17 00:00:00 2001
|
2019-03-20 03:25:48 +00:00
|
|
|
From: Elliott Sales de Andrade <quantum.analyst@gmail.com>
|
|
|
|
Date: Tue, 19 Mar 2019 23:22:40 -0400
|
2020-02-14 14:35:51 +00:00
|
|
|
Subject: [PATCH 2/2] Install both binaries and use libdir.
|
2019-03-20 03:25:48 +00:00
|
|
|
|
|
|
|
This allows us to build with a shared library for other users while
|
|
|
|
still providing the normal executable.
|
|
|
|
|
|
|
|
Signed-off-by: Elliott Sales de Andrade <quantum.analyst@gmail.com>
|
|
|
|
---
|
|
|
|
configure.py | 7 +++++++
|
2019-04-10 01:23:05 +00:00
|
|
|
tools/install.py | 29 +++++++++++++----------------
|
|
|
|
2 files changed, 20 insertions(+), 16 deletions(-)
|
2019-03-20 03:25:48 +00:00
|
|
|
|
|
|
|
diff --git a/configure.py b/configure.py
|
2020-02-25 16:22:47 +00:00
|
|
|
index beb08df0884f7693b6c07d7fb5e85ae7bdcd1d7d..9e364586d4f79322fe53f41915ed7aad0e23a30d 100755
|
2019-03-20 03:25:48 +00:00
|
|
|
--- a/configure.py
|
|
|
|
+++ b/configure.py
|
2020-02-25 16:22:47 +00:00
|
|
|
@@ -582,6 +582,12 @@ parser.add_option('--shared',
|
2019-03-20 03:25:48 +00:00
|
|
|
help='compile shared library for embedding node in another project. ' +
|
|
|
|
'(This mode is not officially supported for regular applications)')
|
|
|
|
|
|
|
|
+parser.add_option('--libdir',
|
|
|
|
+ action='store',
|
|
|
|
+ dest='libdir',
|
|
|
|
+ default='lib',
|
|
|
|
+ help='a directory to install the shared library into')
|
|
|
|
+
|
|
|
|
parser.add_option('--without-v8-platform',
|
|
|
|
action='store_true',
|
|
|
|
dest='without_v8_platform',
|
2020-02-25 16:22:47 +00:00
|
|
|
@@ -1124,6 +1130,7 @@ def configure_node(o):
|
2020-02-14 14:35:51 +00:00
|
|
|
o['variables']['node_no_browser_globals'] = b(options.no_browser_globals)
|
|
|
|
|
2019-03-20 03:25:48 +00:00
|
|
|
o['variables']['node_shared'] = b(options.shared)
|
|
|
|
+ o['variables']['libdir'] = options.libdir
|
|
|
|
node_module_version = getmoduleversion.get_version()
|
|
|
|
|
2020-02-14 14:35:51 +00:00
|
|
|
if options.dest_os == 'android':
|
2019-03-20 03:25:48 +00:00
|
|
|
diff --git a/tools/install.py b/tools/install.py
|
2019-04-23 18:07:13 +00:00
|
|
|
index 655802980a6ea94d1d4ca1dc63c8c8e905fbb83a..fe4723bf15012c8aacacb0393dc8294c049b0503 100755
|
2019-03-20 03:25:48 +00:00
|
|
|
--- a/tools/install.py
|
|
|
|
+++ b/tools/install.py
|
2019-10-28 17:34:25 +00:00
|
|
|
@@ -121,26 +121,23 @@ def subdir_files(path, dest, action):
|
2019-03-20 03:25:48 +00:00
|
|
|
|
|
|
|
def files(action):
|
|
|
|
is_windows = sys.platform == 'win32'
|
|
|
|
- output_file = 'node'
|
|
|
|
output_prefix = 'out/Release/'
|
|
|
|
+ output_libprefix = output_prefix
|
|
|
|
|
|
|
|
- if 'false' == variables.get('node_shared'):
|
|
|
|
- if is_windows:
|
|
|
|
- output_file += '.exe'
|
|
|
|
+ if is_windows:
|
|
|
|
+ output_bin = 'node.exe'
|
|
|
|
+ output_lib = 'node.dll'
|
|
|
|
else:
|
|
|
|
- if is_windows:
|
|
|
|
- output_file += '.dll'
|
|
|
|
- else:
|
|
|
|
- output_file = 'lib' + output_file + '.' + variables.get('shlib_suffix')
|
|
|
|
- # GYP will output to lib.target except on OS X, this is hardcoded
|
|
|
|
- # in its source - see the _InstallableTargetInstallPath function.
|
|
|
|
- if sys.platform != 'darwin':
|
|
|
|
- output_prefix += 'lib.target/'
|
|
|
|
+ output_bin = 'node'
|
|
|
|
+ output_lib = 'libnode.' + variables.get('shlib_suffix')
|
|
|
|
+ # GYP will output to lib.target except on OS X, this is hardcoded
|
|
|
|
+ # in its source - see the _InstallableTargetInstallPath function.
|
|
|
|
+ if sys.platform != 'darwin':
|
|
|
|
+ output_libprefix += 'lib.target/'
|
2019-04-10 01:23:05 +00:00
|
|
|
|
|
|
|
- if 'false' == variables.get('node_shared'):
|
|
|
|
- action([output_prefix + output_file], 'bin/' + output_file)
|
|
|
|
- else:
|
|
|
|
- action([output_prefix + output_file], 'lib/' + output_file)
|
2019-03-20 03:25:48 +00:00
|
|
|
+ action([output_prefix + output_bin], 'bin/' + output_bin)
|
|
|
|
+ if 'true' == variables.get('node_shared'):
|
|
|
|
+ action([output_libprefix + output_lib], variables.get('libdir') + '/' + output_lib)
|
|
|
|
|
|
|
|
if 'true' == variables.get('node_use_dtrace'):
|
|
|
|
action(['out/Release/node.d'], 'lib/dtrace/node.d')
|
|
|
|
--
|
2020-02-06 15:51:27 +00:00
|
|
|
2.24.1
|
2019-03-20 03:25:48 +00:00
|
|
|
|