-
-
Notifications
You must be signed in to change notification settings - Fork 57
Precompiled versions
This project is a binary (C++) addon for Node written with NAN and as such it requires platform-specific build tools and node-gyp installed and properly configured. In most cases, the hassle of compilation can be avoided by identifying the platform and downloading a pre-compiled artifact. It is done with install-artifact-from-github. If you have any problems with this tool or want to bypass it, please consult the documentation hosted in its wiki.
If you want to opt-out from fetching a precompiled version and build locally, define the following environment variable: DEVELOPMENT_SKIP_GETTING_ASSET
with any non-empty string value. Example: DEVELOPMENT_SKIP_GETTING_ASSET=yes
.
The policy is to provide builds with the latest re2
release for the Node versions with an active "Security Support". At the moment of this writing (5/9/2021), it means versions 12, 14, 15, and 16: https://endoflife.date/nodejs
re2
-specific details:
- All builds are listed in build.yml.
- As of 5/9/2021 we build binaries for the following platform/node combinations:
- Windows:
10,12, 14, 15, 16. - MacOS (intel):
10,12, 14, 15, 16. Linux CentOS 6: 10.- Linux CentOS 7: 12, 14, 15, 16.
- Alpine Linux (MUSL):
10,12, 14, 15, 16.
- Windows:
- All details of building environments can be found in actions.
- Different distros are used to minimize versions of required internal libraries increasing interoperability.
- As of 5/9/2021 we build binaries for the following platform/node combinations:
- The results are saved in a corresponding release (see releases).
- If
RE2_DOWNLOAD_MIRROR
environment variable is defined, it will be used instead ofhttps://github.com
for downloading an artifact.- It is there to facilitate private mirrors. You can create one by copying existing artifacts from a release or building all necessary versions yourself.