diff options
author | agl@chromium.org <agl@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-11-30 22:15:00 +0000 |
---|---|---|
committer | agl@chromium.org <agl@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-11-30 22:15:00 +0000 |
commit | 17a317611b88ca884a00246c0ed6b1b717500a00 (patch) | |
tree | 853e438302eec24ac8d7ca28e448166c76fc44b1 /DEPS | |
parent | 554a8858ada95672d470a14668d5854f47a4ebd4 (diff) | |
download | chromium_src-17a317611b88ca884a00246c0ed6b1b717500a00.zip chromium_src-17a317611b88ca884a00246c0ed6b1b717500a00.tar.gz chromium_src-17a317611b88ca884a00246c0ed6b1b717500a00.tar.bz2 |
Roll ICU DEPS to pickup the following:
Make ICU assembly portable to ARM
This is a TBR reapplication of r26784, which was lost in r32640. The comment
for the original change appears below:
This patch fixes the following error:
CC src/out/Release/obj/third_party/icu/linux/icudt42l_dat.o
third_party/icu/linux/icudt42l_dat.s: Assembler messages:
third_party/icu/linux/icudt42l_dat.s:5: Error: unrecognized symbol type ""
make: *** [src/out/Release/obj/third_party/icu/linux/icudt42l_dat.o] Error 1
The problem is the assembly syntax that is used is not portable to ARM,
where the '@' symbol is a comment:
> Note on targets where the @ character is the start of a comment
> (eg ARM) then another character is used instead. For example the
> ARM port uses the % character.
(from http://sourceware.org/binutils/docs-2.18/as/Section.html#Section)
Using % instead of @ appears to work on both ARM and x64.
BUG=22369
Patch by Joel Stanley <joel@jms.id.au>
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@33352 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'DEPS')
-rw-r--r-- | DEPS | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -26,7 +26,7 @@ deps = { "/trunk/deps/third_party/WebKit@27313", "src/third_party/icu": - "/trunk/deps/third_party/icu42@32651", + "/trunk/deps/third_party/icu42@33345", "src/third_party/hunspell": "/trunk/deps/third_party/hunspell128@30191", |