2019-07-22 17:15:26 -06:00
|
|
|
#!/bin/sh -e
|
|
|
|
|
2021-07-14 02:56:09 -06:00
|
|
|
# Fix build when libatomic.so does not exist in the system.
|
|
|
|
# This may be provided by compiler-rt which requires no additional
|
|
|
|
# linker flags to be used.
|
2022-03-28 04:45:48 -06:00
|
|
|
case $("$CC" -print-file-name=libatomic.so) in */*) ;; *)
|
2021-07-14 02:56:09 -06:00
|
|
|
sed 's/-latomic//' node.gyp > _
|
|
|
|
mv -f _ node.gyp
|
2022-03-28 04:45:48 -06:00
|
|
|
esac
|
2021-07-14 02:56:09 -06:00
|
|
|
|
2019-10-23 02:14:44 -06:00
|
|
|
./configure \
|
2020-03-04 13:48:52 -07:00
|
|
|
--shared-zlib \
|
2021-07-07 15:00:14 -06:00
|
|
|
--shared-openssl \
|
2021-06-30 12:11:48 -06:00
|
|
|
--with-intl=none \
|
2020-03-04 13:48:52 -07:00
|
|
|
--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
|
|
|
|
2020-08-06 03:30:02 -06:00
|
|
|
# Remove unneeded files.
|
2021-07-06 07:04:54 -06:00
|
|
|
rm -rf \
|
|
|
|
"$1/usr/include/node/openssl" \
|
|
|
|
"$1/usr/share/doc" \
|
|
|
|
"$1/usr/share/systemtap" \
|
|
|
|
"$1/usr/lib/node_modules/npm/scripts" \
|
|
|
|
"$1/usr/lib/node_modules/npm/configure"
|