mirror of
https://github.com/nodejs/node.git
synced 2024-11-22 07:37:56 +01:00
30dbc9d961
* General copy-editing * Move `[sudo] make install` step from general Unix build to own step * Remove `make test-addons` as that is now covered by `make test` * Standardize on `/path/to/foo` as used elsewhere in the doc * Change `node -e` to `./node -e` to avoid using different node binary PR-URL: https://github.com/nodejs/node/pull/8398 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
277 lines
7.5 KiB
Markdown
277 lines
7.5 KiB
Markdown
## Building Node.js
|
|
|
|
Depending on what platform or features you require, the build process may
|
|
differ slightly. After you've successfully built a binary, running the
|
|
test suite to validate that the binary works as intended is a good next step.
|
|
|
|
If you consistently can reproduce a test failure, search for it in the
|
|
[Node.js issue tracker](https://github.com/nodejs/node/issues) or
|
|
file a new issue.
|
|
|
|
|
|
### Unix / OS X
|
|
|
|
Prerequisites:
|
|
|
|
* `gcc` and `g++` 4.8 or newer, or
|
|
* `clang` and `clang++` 3.4 or newer
|
|
* Python 2.6 or 2.7
|
|
* GNU Make 3.81 or newer
|
|
|
|
On OS X, you will also need:
|
|
* [Xcode](https://developer.apple.com/xcode/download/)
|
|
* You also need to install the `Command Line Tools` via Xcode. You can find
|
|
this under the menu `Xcode -> Preferences -> Downloads`
|
|
* This step will install `gcc` and the related toolchain containing `make`
|
|
|
|
On FreeBSD and OpenBSD, you may also need:
|
|
* libexecinfo
|
|
|
|
To build Node.js:
|
|
|
|
```console
|
|
$ ./configure
|
|
$ make
|
|
```
|
|
|
|
If your Python binary is in a non-standard location or has a
|
|
non-standard name, run the following instead:
|
|
|
|
```console
|
|
$ export PYTHON=/path/to/python
|
|
$ $PYTHON ./configure
|
|
$ make
|
|
```
|
|
|
|
To run the tests:
|
|
|
|
```console
|
|
$ make test
|
|
```
|
|
|
|
To run the npm test suite:
|
|
|
|
*note: to run the suite on node v4 or earlier you must first*
|
|
*run `make install`*
|
|
|
|
```console
|
|
$ make test-npm
|
|
```
|
|
|
|
To build the documentation:
|
|
|
|
This will build Node.js first (if necessary) and then use it to build the docs:
|
|
|
|
```console
|
|
$ make doc
|
|
```
|
|
|
|
If you have an existing Node.js you can build just the docs with:
|
|
|
|
```console
|
|
$ NODE=/path/to/node make doc-only
|
|
```
|
|
|
|
To read the documentation:
|
|
|
|
```console
|
|
$ man doc/node.1
|
|
```
|
|
|
|
To test if Node.js was built correctly:
|
|
|
|
```console
|
|
$ ./node -e "console.log('Hello from Node.js ' + process.version)"
|
|
```
|
|
|
|
To install this version of Node.js into a system directory:
|
|
|
|
```console
|
|
$ [sudo] make install
|
|
```
|
|
|
|
|
|
### Windows
|
|
|
|
Prerequisites:
|
|
|
|
* [Python 2.6 or 2.7](https://www.python.org/downloads/)
|
|
* One of:
|
|
* [Visual C++ Build Tools](http://landinghub.visualstudio.com/visual-cpp-build-tools)
|
|
* [Visual Studio 2015 Update 3](https://www.visualstudio.com/), all editions
|
|
including the Community edition.
|
|
* Basic Unix tools required for some tests,
|
|
[Git for Windows](http://git-scm.com/download/win) includes Git Bash
|
|
and tools which can be included in the global `PATH`.
|
|
|
|
```console
|
|
> vcbuild nosign
|
|
```
|
|
|
|
To run the tests:
|
|
|
|
```console
|
|
> vcbuild test
|
|
```
|
|
|
|
To test if Node.js was built correctly:
|
|
|
|
```console
|
|
> Release\node -e "console.log('Hello from Node.js', process.version)"
|
|
```
|
|
|
|
### Android / Android-based devices (e.g., Firefox OS)
|
|
|
|
Although these instructions for building on Android are provided, please note
|
|
that Android is not an officially supported platform at this time. Patches to
|
|
improve the Android build are accepted. However, there is no testing on Android
|
|
in the current continuous integration environment. The participation of people
|
|
dedicated and determined to improve Android building, testing, and support is
|
|
encouraged.
|
|
|
|
Be sure you have downloaded and extracted [Android NDK]
|
|
(https://developer.android.com/tools/sdk/ndk/index.html)
|
|
before in a folder. Then run:
|
|
|
|
```console
|
|
$ ./android-configure /path/to/your/android-ndk
|
|
$ make
|
|
```
|
|
|
|
|
|
### `Intl` (ECMA-402) support:
|
|
|
|
[Intl](https://github.com/nodejs/node/wiki/Intl) support is
|
|
enabled by default, with English data only.
|
|
|
|
#### Default: `small-icu` (English only) support
|
|
|
|
By default, only English data is included, but
|
|
the full `Intl` (ECMA-402) APIs. It does not need to download
|
|
any dependencies to function. You can add full
|
|
data at runtime.
|
|
|
|
*Note:* more docs are on
|
|
[the node wiki](https://github.com/nodejs/node/wiki/Intl).
|
|
|
|
#### Build with full ICU support (all locales supported by ICU):
|
|
|
|
With the `--download=all`, this may download ICU if you don't have an
|
|
ICU in `deps/icu`. (The embedded `small-icu` included in the default
|
|
Node.js source does not include all locales.)
|
|
|
|
##### Unix / OS X:
|
|
|
|
```console
|
|
$ ./configure --with-intl=full-icu --download=all
|
|
```
|
|
|
|
##### Windows:
|
|
|
|
```console
|
|
> vcbuild full-icu download-all
|
|
```
|
|
|
|
#### Building without Intl support
|
|
|
|
The `Intl` object will not be available, nor some other APIs such as
|
|
`String.normalize`.
|
|
|
|
##### Unix / OS X:
|
|
|
|
```console
|
|
$ ./configure --without-intl
|
|
```
|
|
|
|
##### Windows:
|
|
|
|
```console
|
|
> vcbuild without-intl
|
|
```
|
|
|
|
#### Use existing installed ICU (Unix / OS X only):
|
|
|
|
```console
|
|
$ pkg-config --modversion icu-i18n && ./configure --with-intl=system-icu
|
|
```
|
|
|
|
If you are cross compiling, your `pkg-config` must be able to supply a path
|
|
that works for both your host and target environments.
|
|
|
|
#### Build with a specific ICU:
|
|
|
|
You can find other ICU releases at
|
|
[the ICU homepage](http://icu-project.org/download).
|
|
Download the file named something like `icu4c-**##.#**-src.tgz` (or
|
|
`.zip`).
|
|
|
|
##### Unix / OS X
|
|
|
|
From an already-unpacked ICU:
|
|
```console
|
|
$ ./configure --with-intl=[small-icu,full-icu] --with-icu-source=/path/to/icu
|
|
```
|
|
|
|
From a local ICU tarball:
|
|
```console
|
|
$ ./configure --with-intl=[small-icu,full-icu] --with-icu-source=/path/to/icu.tgz
|
|
```
|
|
|
|
From a tarball URL:
|
|
```console
|
|
$ ./configure --with-intl=full-icu --with-icu-source=http://url/to/icu.tgz
|
|
```
|
|
|
|
##### Windows
|
|
|
|
First unpack latest ICU to `deps/icu`
|
|
[icu4c-**##.#**-src.tgz](http://icu-project.org/download) (or `.zip`)
|
|
as `deps/icu` (You'll have: `deps/icu/source/...`)
|
|
|
|
```console
|
|
> vcbuild full-icu
|
|
```
|
|
|
|
## Building Node.js with FIPS-compliant OpenSSL
|
|
|
|
NOTE: Windows is not yet supported
|
|
|
|
It is possible to build Node.js with
|
|
[OpenSSL FIPS module](https://www.openssl.org/docs/fips/fipsnotes.html).
|
|
|
|
**Note**: building in this way does **not** allow you to claim that the
|
|
runtime is FIPS 140-2 validated. Instead you can indicate that the runtime
|
|
uses a validated module. See the [security policy](http://csrc.nist.gov/groups/STM/cmvp/documents/140-1/140sp/140sp1747.pdf)
|
|
page 60 for more details. In addition, the validation for the underlying module
|
|
is only valid if it is deployed in accordance with its [security policy](http://csrc.nist.gov/groups/STM/cmvp/documents/140-1/140sp/140sp1747.pdf).
|
|
If you need FIPS validated cryptography it is recommended that you read both
|
|
the [security policy](http://csrc.nist.gov/groups/STM/cmvp/documents/140-1/140sp/140sp1747.pdf)
|
|
and [user guide](https://openssl.org/docs/fips/UserGuide-2.0.pdf).
|
|
|
|
### Instructions
|
|
|
|
1. Obtain a copy of openssl-fips-x.x.x.tar.gz.
|
|
To comply with the security policy you must ensure the path
|
|
through which you get the file complies with the requirements
|
|
for a "secure installation" as described in section 6.6 in
|
|
the [user guide](https://openssl.org/docs/fips/UserGuide-2.0.pdf).
|
|
For evaluation/experimentation you can simply download and verify
|
|
`openssl-fips-x.x.x.tar.gz` from https://www.openssl.org/source/
|
|
2. Extract source to `openssl-fips` folder and `cd openssl-fips`
|
|
3. `./config`
|
|
4. `make`
|
|
5. `make install`
|
|
(NOTE: to comply with the security policy you must use the exact
|
|
commands in steps 3-5 without any additional options as per
|
|
Appendix A in the [security policy](http://csrc.nist.gov/groups/STM/cmvp/documents/140-1/140sp/140sp1747.pdf).
|
|
The only exception is that `./config no-asm` can be
|
|
used in place of `./config`, and the FIPSDIR environment variable
|
|
may be used to specify a non-standard install folder for the
|
|
validated module, as per User Guide sections 4.2.1, 4.2.2, and 4.2.3.
|
|
6. Get into Node.js checkout folder
|
|
7. `./configure --openssl-fips=/path/to/openssl-fips/installdir`
|
|
For example on ubuntu 12 the installation directory was
|
|
/usr/local/ssl/fips-2.0
|
|
8. Build Node.js with `make -j`
|
|
9. Verify with `node -p "process.versions.openssl"` (`1.0.2a-fips`)
|