diff options
author | Steven R. Loomis <srl@icu-project.org> | 2015-11-12 18:10:26 -0800 |
---|---|---|
committer | James M Snell <jasnell@gmail.com> | 2015-12-23 08:38:33 -0800 |
commit | 77306f82a1de15bf052d9e29675ec13c8ee7cbb1 (patch) | |
tree | 6c48d87a39ce632e2ce72d9384418d9e291dafc7 /tools | |
parent | 8d03ec9b7cb852ed9ead5658bdff27144b203736 (diff) | |
download | nodejs-77306f82a1de15bf052d9e29675ec13c8ee7cbb1.tar.gz nodejs-77306f82a1de15bf052d9e29675ec13c8ee7cbb1.tar.bz2 nodejs-77306f82a1de15bf052d9e29675ec13c8ee7cbb1.zip |
build: fix --with-intl=system-icu for x-compile
* add toolset stuff to icu-system.gyp
* update docs
Fixes: https://github.com/nodejs/node/issues/3801
PR-URL: https://github.com/nodejs/node/pull/3808
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: James M Snell <jasnell@gmail.com>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/icu/icu-system.gyp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/icu/icu-system.gyp b/tools/icu/icu-system.gyp index 44d4f5fef..b3ca0e39b 100644 --- a/tools/icu/icu-system.gyp +++ b/tools/icu/icu-system.gyp @@ -9,10 +9,12 @@ { 'target_name': 'icuuc', 'type': 'none', + 'toolsets': [ 'host', 'target' ], }, { 'target_name': 'icui18n', 'type': 'none', + 'toolsets': [ 'host', 'target' ], }, ], } |