mirror of
https://github.com/nodejs/node.git
synced 2025-08-15 13:48:44 +02:00
build: fix configure --link-module
Add the list of linked modules to the arguments for `js2c.py`. These were unintentionally omitted when the build was previously refactored to avoid command line length limits on Windows. PR-URL: https://github.com/nodejs/node/pull/48522 Fixes: https://github.com/nodejs/node/issues/42302 Refs: https://github.com/nodejs/node/pull/39069 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
This commit is contained in:
parent
d9f394e607
commit
ae9f919880
2 changed files with 5 additions and 1 deletions
|
@ -1411,7 +1411,7 @@ def configure_node(o):
|
|||
o['variables']['shlib_suffix'] = shlib_suffix
|
||||
|
||||
if options.linked_module:
|
||||
o['variables']['library_files'] = options.linked_module
|
||||
o['variables']['linked_module_files'] = options.linked_module
|
||||
|
||||
o['variables']['asan'] = int(options.enable_asan or 0)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue