-
Notifications
You must be signed in to change notification settings - Fork 7.3k
Conversation
Thank you for contributing this pull request! Here are a few pointers to make sure your submission will be considered for inclusion. Commit bnoordhuis/node@fc081ff has the following error(s):
You can fix all these things without opening another issue. Please see CONTRIBUTING.md for more information |
@@ -16,6 +16,15 @@ Unix/Macintosh: | |||
make | |||
make install | |||
|
|||
With libicu i18n support: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm considering rewording this to "With libicu i18n support (UNSUPPORTED):"
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
agreed.
Adds a --with-icu-path= switch to the configure script. Requires that the user checks out the copy of libicu that's bundled with chromium to a fixed directory. It's still a little rough around the edges but it works. Fixes nodejs#6371.
+1 from me. |
LGTM, can we use a git example in the readme instead of svn? |
Not really. It only works with the libicu that's bundled with chromium. You can't do partial checkouts with git and the full chromium tree is a whopping 12 GB. |
@davglass Could you try this patch and see if it fits your needs? |
Ping @rohiniwork, can you check out this patch? |
This worked for me, except for the I had to run configure with the gyp path ./configure --with-icu-path=deps/v8/third_party/icu46/icu.gyp This is because v8.gyp assumes the gyp file is specified, not just the directory Thanks, |
Same here, I had to change the configure line like above. If we update the README with that bit I'd be happy that this is merged :) |
This was merged in 9e32a7d |
Adds a --with-icu-path= switch to the configure script. Requires that the user
checks out the copy of libicu that's bundled with chromium to a fixed directory.
It's still a little rough around the edges but it works.
Fixes #6371.
Suggested reviewers: @tjfontaine @trevnorris