2011-12-14 06:38:41 +04:00
|
|
|
core
|
|
|
|
vgcore.*
|
2013-01-24 14:35:29 +04:00
|
|
|
v8*.log
|
2013-01-14 16:06:29 +04:00
|
|
|
perf.data
|
|
|
|
perf.data.old
|
2009-04-16 15:20:22 +04:00
|
|
|
.waf*
|
2009-02-22 19:50:43 +03:00
|
|
|
tags
|
2009-04-16 15:20:22 +04:00
|
|
|
.lock-wscript
|
|
|
|
*.pyc
|
2009-10-04 00:42:03 +04:00
|
|
|
doc/api.xml
|
2010-07-02 01:29:06 +04:00
|
|
|
tmp/
|
2014-12-17 16:34:21 +03:00
|
|
|
test/tmp*/
|
2015-01-08 16:00:43 +03:00
|
|
|
iojs
|
|
|
|
iojs_g
|
2010-09-11 11:44:29 +04:00
|
|
|
*.swp
|
2010-10-14 03:20:24 +04:00
|
|
|
.benchmark_reports
|
2010-11-25 03:57:15 +03:00
|
|
|
/.project
|
2011-03-18 19:14:15 +03:00
|
|
|
/.cproject
|
2014-12-16 02:36:00 +03:00
|
|
|
icu_config.gypi
|
2011-08-04 04:01:30 +04:00
|
|
|
|
2011-08-08 23:11:48 +04:00
|
|
|
/out
|
2011-08-07 09:11:21 +04:00
|
|
|
|
|
|
|
# various stuff that VC++ produces/uses
|
|
|
|
Debug/
|
|
|
|
Release/
|
2012-06-20 21:14:45 +04:00
|
|
|
!doc/blog/**
|
2011-08-07 09:11:21 +04:00
|
|
|
*.sln
|
2011-09-15 01:51:49 +04:00
|
|
|
!nodemsi.sln
|
2011-08-07 09:11:21 +04:00
|
|
|
*.suo
|
|
|
|
*.vcproj
|
|
|
|
*.vcxproj
|
|
|
|
*.vcxproj.user
|
|
|
|
*.vcxproj.filters
|
|
|
|
UpgradeLog*.XML
|
|
|
|
_UpgradeReport_Files/
|
|
|
|
ipch/
|
|
|
|
*.sdf
|
|
|
|
*.opensdf
|
2011-08-08 19:55:39 +04:00
|
|
|
|
2012-01-18 02:02:15 +04:00
|
|
|
/config.mk
|
2011-12-24 02:24:50 +04:00
|
|
|
/config.gypi
|
2011-08-08 23:11:48 +04:00
|
|
|
*-nodegyp*
|
|
|
|
/gyp-mac-tool
|
2011-11-11 06:16:51 +04:00
|
|
|
/dist-osx
|
2011-11-23 04:10:32 +04:00
|
|
|
/npm.wxs
|
|
|
|
/tools/msvs/npm.wixobj
|
2014-01-19 02:49:18 +04:00
|
|
|
/test/addons/doc-*/
|
2012-03-17 22:00:05 +04:00
|
|
|
email.md
|
|
|
|
deps/v8-*
|
build, i18n: improve Intl build, add "--with-intl"
The two main goals of this change are:
- To make it easier to build the Intl option using ICU (particularly,
using a newer ICU than v8/Chromium's version)
- To enable a much smaller ICU build with only English support The goal
here is to get node.js binaries built this way by default so that the
Intl API can be used. Additional data can be added at execution time
(see Readme and wiki)
More details are at https://github.com/joyent/node/pull/7719
In particular, this change adds the "--with-intl=" configure option to
provide more ways of building "Intl":
- "full-icu" picks up an ICU from deps/icu
- "small-icu" is similar, but builds only English
- "system-icu" uses pkg-config to find an installed ICU
- "none" does nothing (no Intl)
For Windows builds, the "full-icu" or "small-icu" options are added to
vcbuild.bat.
Note that the existing "--with-icu-path" option is not removed from
configure, but may not be used alongside the new option.
Wiki changes have already been made on
https://github.com/joyent/node/wiki/Installation
and a new page created at
https://github.com/joyent/node/wiki/Intl
(marked as provisional until this change lands.)
Summary of changes:
* README.md : doc updates
* .gitignore : added "deps/icu" as this is the location where ICU is
unpacked to.
* Makefile : added the tools/icu/* files to cpplint, but excluded a
problematic file.
* configure : added the "--with-intl" option mentioned above.
Calculate at config time the list of ICU source files to use and data
packaging options.
* node.gyp : add the new files src/node_i18n.cc/.h as well as ICU
linkage.
* src/node.cc : add call into
node::i18n::InitializeICUDirectory(icu_data_dir) as well as new
--icu-data-dir option and NODE_ICU_DATA env variable to configure ICU
data loading. This loading is only relevant in the "small"
configuration.
* src/node_i18n.cc : new source file for the above Initialize..
function, to setup ICU as needed.
* tools/icu : new directory with some tools needed for this build.
* tools/icu/icu-generic.gyp : new .gyp file that builds ICU in some new
ways, both on unix/mac and windows.
* tools/icu/icu-system.gyp : new .gyp file to build node against a
pkg-config detected ICU.
* tools/icu/icu_small.json : new config file for the "English-only" small
build.
* tools/icu/icutrim.py : new tool for trimming down ICU data. Reads the
above .json file.
* tools/icu/iculslocs.cc : new tool for repairing ICU data manifests
after trim operation.
* tools/icu/no-op.cc : dummy file to force .gyp into using a C++ linker.
* vcbuild.bat : added small-icu and full-icu options, to call into
configure.
* Fixed toolset dependencies, see
https://github.com/joyent/node/pull/7719#issuecomment-54641687
Note that because of a bug in gyp {CC,CXX}_host must also be set.
Otherwise gcc/g++ will be used by default for part of the build.
Reviewed-by: Trevor Norris <trev.norris@gmail.com>
Reviewed-by: Fedor Indutny <fedor@indutny.com>
2014-09-05 09:03:24 +04:00
|
|
|
deps/icu
|
build: i18n: add icu config options
Make "--with-intl=none" the default and add "intl-none" option to
vcbuild.bat.
If icu data is missing print a warning unless either --download=all or
--download=icu is set. If set then automatically download, verify (MD5)
and unpack the ICU data if not already available.
There's a "list" of URLs being used, but right now only the first is
picked up. The logic works something like this:
* If there is no directory deps/icu,
* If no zip file (currently icu4c-54_1-src.zip),
* Download zip file (icu-project.org -> sf.net)
* Verify the MD5 sum of the zipfile
* If bad, print error and exit
* Unpack the zipfile into deps/icu
* If deps/icu now exists, use it, else fail with help text
Add the configuration option "--with-icu-source=..."
Usage:
* --with-icu-source=/path/to/my/other/icu
* --with-icu-source=/path/to/icu54.zip
* --with-icu-source=/path/to/icu54.tgz
* --with-icu-source=http://example.com/icu54.tar.bz2
Add the configuration option "--with-icu-locals=...". Allows choosing
which locales are used in the "small-icu" case.
Example:
configure --with-intl=small-icu --with-icu-locales=tlh,grc,nl
(Also note that as of this writing, neither Klingon nor Ancient Greek
are in upstream CLDR data. Serving suggestion only.)
Don't use hard coded ../../out paths on windows. This was suggested by
@misterdjules as it causes test failures. With this fix, "out" is no
longer created on windows and the following can run properly:
python tools/test.py simple
Reduce space by about 1MB with ICU 54 (over without this patch). Also
trims a few other source files, but only conditional on the exact ICU
version used. This is to future-proof - a file that is unneeded now may
be needed in future ICUs.
Also:
* Update distclean to remove icu related files
* Refactor some code into tools/configure.d/nodedownload.py
* Update docs
* Add test
PR-URL: https://github.com/joyent/node/pull/8719
Fixes: https://github.com/joyent/node/issues/7676#issuecomment-64704230
[trev.norris@gmail.com small change to test's whitespace and logic]
Signed-off-by: Trevor Norris <trev.norris@gmail.com>
2014-11-13 04:13:14 +03:00
|
|
|
deps/icu*.zip
|
|
|
|
deps/icu*.tgz
|
|
|
|
deps/icu-tmp
|
2012-06-11 20:30:44 +04:00
|
|
|
./node_modules
|
2013-01-14 16:06:29 +04:00
|
|
|
.svn/
|
2013-01-17 10:29:48 +04:00
|
|
|
|
|
|
|
# generated by gyp on Windows
|
|
|
|
deps/openssl/openssl.props
|
|
|
|
deps/openssl/openssl.targets
|
|
|
|
deps/openssl/openssl.xml
|
2013-02-01 22:17:22 +04:00
|
|
|
|
2013-12-03 08:59:34 +04:00
|
|
|
# generated by gyp on android
|
|
|
|
/*.target.mk
|
|
|
|
/*.host.mk
|
|
|
|
deps/openssl/openssl.target.mk
|
|
|
|
deps/zlib/zlib.target.mk
|
|
|
|
|
2013-02-01 22:17:22 +04:00
|
|
|
# build/release artifacts
|
|
|
|
/*.tar.gz
|
2013-08-22 03:59:15 +04:00
|
|
|
/SHASUMS*.txt*
|
2013-02-14 00:19:08 +04:00
|
|
|
|
|
|
|
/tools/wrk/wrk
|
2014-07-23 05:03:10 +04:00
|
|
|
|
|
|
|
# test artifacts
|
|
|
|
tools/faketime
|
2014-10-04 04:42:37 +04:00
|
|
|
icu_config.gypi
|