docs: add ico --build note

This commit is contained in:
calebboyd
2018-02-09 00:20:52 -06:00
committed by Caleb Boyd
parent b61c0df51d
commit 48b61442db
+1 -5
View File
@@ -211,11 +211,7 @@ Any modifications made to `NexeFile#contents` will be maintained in the cache _w
## Native Modules
Any `.node` binding can be used with nexe. These library files will be bundled and written alongside the resulting binary at runtime. Currently, nexe supports modules loaded directly (`.node` files) and those loaded with the `'bindings'` module. It does not yet support modules using `node-pre-gyp#find`.
Its important to note: unless your native module conditionally loads each platform binary. Nexe builds with native modules will be platform specific. Eg. You will no longer be able to use cross platform builds.
Nexe builds with native modules will need to target the same version, platform and architecture as the platform hosting the module. At least until [N-API](https://github.com/nodejs/abi-stable-node) is fully propegated
A note about native modules,
TODO