2022-07-11 13:36:39 +00:00
|
|
|
From 19844592f46490cd7cff5f58aca73a64a992fb42 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
|
2022-06-07 17:24:16 +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>
|
2022-05-31 11:30:35 +00:00
|
|
|
Signed-off-by: rpm-build <rpm-build>
|
2019-03-20 03:25:48 +00:00
|
|
|
---
|
2022-05-17 18:16:51 +00:00
|
|
|
configure.py | 7 +++++++
|
|
|
|
tools/install.py | 2 +-
|
|
|
|
2 files changed, 8 insertions(+), 1 deletion(-)
|
2019-03-20 03:25:48 +00:00
|
|
|
|
|
|
|
diff --git a/configure.py b/configure.py
|
2022-07-11 13:36:39 +00:00
|
|
|
index e53a83f332ffd60cf7b6fe7e079470a52a43a8de..efdda6afce33201976e3811907bf4d7e3c2d4302 100755
|
2019-03-20 03:25:48 +00:00
|
|
|
--- a/configure.py
|
|
|
|
+++ b/configure.py
|
2022-07-11 13:36:39 +00:00
|
|
|
@@ -735,6 +735,12 @@ parser.add_argument('--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)')
|
|
|
|
|
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',
|
2022-07-11 13:36:39 +00:00
|
|
|
@@ -1372,6 +1378,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
|
2022-06-07 17:24:16 +00:00
|
|
|
index 47e9d8bd7a1ae596a7c6e1d5917f538e81533726..c1afbbf0827ced2e166668e7932504687009bb9e 100755
|
2019-03-20 03:25:48 +00:00
|
|
|
--- a/tools/install.py
|
|
|
|
+++ b/tools/install.py
|
2022-05-31 11:30:35 +00:00
|
|
|
@@ -143,7 +143,7 @@ def files(action):
|
2022-05-17 18:16:51 +00:00
|
|
|
action([output_prefix + 'libnode.lib'], 'lib/libnode.lib')
|
|
|
|
else:
|
|
|
|
output_lib = 'libnode.' + variables.get('shlib_suffix')
|
|
|
|
- action([output_prefix + output_lib], 'lib/' + output_lib)
|
|
|
|
+ action([output_prefix + output_lib], variables.get('libdir') + '/' + output_lib)
|
2019-03-20 03:25:48 +00:00
|
|
|
if 'true' == variables.get('node_use_dtrace'):
|
|
|
|
action(['out/Release/node.d'], 'lib/dtrace/node.d')
|
2021-01-04 20:18:59 +00:00
|
|
|
|
2019-03-20 03:25:48 +00:00
|
|
|
--
|
2022-07-11 13:36:39 +00:00
|
|
|
2.36.1
|
2019-03-20 03:25:48 +00:00
|
|
|
|