2021-09-13 21:05:10 +00:00
|
|
|
From c5cf0a60bc07de8fa7a23f98c242a218094a6c9c 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
|
2021-07-20 20:08:17 +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>
|
2021-04-29 13:41:42 +00:00
|
|
|
Signed-off-by: Stephen Gallagher <sgallagh@redhat.com>
|
2019-03-20 03:25:48 +00:00
|
|
|
---
|
|
|
|
configure.py | 7 +++++++
|
2021-01-04 20:18:59 +00:00
|
|
|
tools/install.py | 21 +++++++++------------
|
|
|
|
2 files changed, 16 insertions(+), 12 deletions(-)
|
2019-03-20 03:25:48 +00:00
|
|
|
|
|
|
|
diff --git a/configure.py b/configure.py
|
2021-08-03 15:13:27 +00:00
|
|
|
index 9327d6e5f5da064b4476adcc38dfa170ad6c16a2..3c54f419e34cb9f06bb32bc318be2de3cefc4546 100755
|
2019-03-20 03:25:48 +00:00
|
|
|
--- a/configure.py
|
|
|
|
+++ b/configure.py
|
2021-08-02 12:59:07 +00:00
|
|
|
@@ -721,10 +721,16 @@ parser.add_argument('--shared',
|
2021-01-04 20:18:59 +00:00
|
|
|
dest='shared',
|
2021-04-29 13:41:42 +00:00
|
|
|
default=None,
|
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)')
|
|
|
|
|
2021-04-29 13:41:42 +00:00
|
|
|
+parser.add_argument('--libdir',
|
2019-03-20 03:25:48 +00:00
|
|
|
+ action='store',
|
|
|
|
+ dest='libdir',
|
|
|
|
+ default='lib',
|
|
|
|
+ help='a directory to install the shared library into')
|
|
|
|
+
|
2021-04-29 13:41:42 +00:00
|
|
|
parser.add_argument('--without-v8-platform',
|
2019-03-20 03:25:48 +00:00
|
|
|
action='store_true',
|
|
|
|
dest='without_v8_platform',
|
2021-01-04 20:18:59 +00:00
|
|
|
default=False,
|
|
|
|
help='do not initialize v8 platform during node.js startup. ' +
|
2021-08-02 12:59:07 +00:00
|
|
|
@@ -1305,10 +1311,11 @@ def configure_node(o):
|
2021-01-04 20:18:59 +00:00
|
|
|
o['variables']['debug_nghttp2'] = 'false'
|
|
|
|
|
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':
|
2021-01-04 20:18:59 +00:00
|
|
|
shlib_suffix = 'so'
|
|
|
|
elif sys.platform == 'darwin':
|
2019-03-20 03:25:48 +00:00
|
|
|
diff --git a/tools/install.py b/tools/install.py
|
2021-09-13 21:05:10 +00:00
|
|
|
index 41cc1cbc60a9480cc08df3aa0ebe582c2becc3a2..11208f9e7166ab60da46d5ace2257c239a7e9263 100755
|
2019-03-20 03:25:48 +00:00
|
|
|
--- a/tools/install.py
|
|
|
|
+++ b/tools/install.py
|
2021-09-13 21:05:10 +00:00
|
|
|
@@ -128,26 +128,23 @@ def subdir_files(path, dest, action):
|
2021-01-04 20:18:59 +00:00
|
|
|
for subdir, files_in_path in ret.items():
|
|
|
|
action(files_in_path, subdir + '/')
|
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')
|
|
|
|
+ output_bin = 'node'
|
|
|
|
+ output_lib = 'libnode.' + variables.get('shlib_suffix')
|
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')
|
2021-01-04 20:18:59 +00:00
|
|
|
|
|
|
|
# behave similarly for systemtap
|
2019-03-20 03:25:48 +00:00
|
|
|
--
|
2021-09-13 21:05:10 +00:00
|
|
|
2.32.0
|
2019-03-20 03:25:48 +00:00
|
|
|
|