2019-07-22 17:15:26 -06:00
|
|
|
#!/bin/sh -e
|
|
|
|
|
2020-03-10 01:37:41 -06:00
|
|
|
# Fix a python 3 incompatibility.
|
|
|
|
sed -i 's|/ (8|// (8|' tools/gyp/pylib/gyp/generator/ninja.py
|
|
|
|
|
2019-10-23 02:14:44 -06:00
|
|
|
./configure \
|
2020-03-04 13:48:52 -07:00
|
|
|
--shared-zlib \
|
|
|
|
--without-intl \
|
|
|
|
--without-etw \
|
|
|
|
--without-dtrace \
|
|
|
|
--without-report \
|
2020-03-04 13:57:53 -07:00
|
|
|
--without-node-snapshot \
|
|
|
|
--without-node-code-cache \
|
2020-03-04 13:48:52 -07:00
|
|
|
--ninja
|
2019-07-22 17:15:26 -06:00
|
|
|
|
2020-03-04 13:48:52 -07:00
|
|
|
ninja -C out/Release
|
|
|
|
tools/install.py install "$1" /usr
|
2020-03-04 13:57:53 -07:00
|
|
|
|
|
|
|
# Remove unneeded headers.
|
|
|
|
rm -rf "$1/usr/include/node/openssl"
|