You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, this project looks great! I've been using https://github.com/nexe/nexe and one of the things I like about that project is the ability to pass custom options to the configure command when building Node. For example, newer versions of Node can be built with a small ICU to reduce the size of the binary a bit (e.g. ./configure --with-intl=small-icu) or even without Intl support at all.
Custom parameters can also be passed to make (e.g. --make=-j$(nproc)).
Is that possible with js2bin?
Thanks!
The text was updated successfully, but these errors were encountered:
Unfortunately no, but if you'd like to put up a PR we'd be happy to consider it. The relevant code can be found here My recommendation would be to populate those arrays from env vars.
Hi, this project looks great! I've been using https://github.com/nexe/nexe and one of the things I like about that project is the ability to pass custom options to the
configure
command when building Node. For example, newer versions of Node can be built with a small ICU to reduce the size of the binary a bit (e.g../configure --with-intl=small-icu
) or even without Intl support at all.Custom parameters can also be passed to
make
(e.g.--make=-j$(nproc)
).Is that possible with js2bin?
Thanks!
The text was updated successfully, but these errors were encountered: