File tree Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change 8383 * We will, at times update the version of V8 shipped in the release line
8484 * if it can be made ABI compatible with the previous version.
8585 *
86+ * Embedders building Node.js can define NODE_EMBEDDER_MODULE_VERSION to
87+ * override the default value of NODE_MODULE_VERSION.
88+ *
8689 * The registry of used NODE_MODULE_VERSION numbers is located at
8790 * https://github.com/nodejs/node/blob/HEAD/doc/abi_version_registry.json
8891 * Extenders, embedders and other consumers of Node.js that require ABI
8992 * version matching should open a pull request to reserve a number in this
9093 * registry.
9194 */
95+ #if defined(NODE_EMBEDDER_MODULE_VERSION )
96+ #define NODE_MODULE_VERSION NODE_EMBEDDER_MODULE_VERSION
97+ #else
9298#define NODE_MODULE_VERSION 115
99+ #endif
93100
94101// The NAPI_VERSION provided by this version of the runtime. This is the version
95102// which the Node binary being built supports.
You can’t perform that action at this time.
0 commit comments