Comment #2 on issue 3405 by [email protected]: Android D8 compile error icudt46l_dat.S unexpected token
http://code.google.com/p/v8/issues/detail?id=3405

Linking https://groups.google.com/forum/#!topic/v8-users/pMyYjAZboWU

QUOTE ====
"The icu.gyp file is used to generate out/third_party/icu/*.mk, in particular:
icudata.host.android_arm.mk
icudata.target.android_arm.mk
Both of which contain a line that looks like this:

OBJS := \
        $(obj).host/$(TARGET)/third_party/icu/linux/icudt46l_dat.o

So it seems like the section in icu.gyp isn't filtering out the "wrong" versions of icudt46l_dat.S when generating the makefiles. For a Mac build of Android, it should look like this:

icudata.host.android_arm.mk:
OBJS := \
        $(obj).host/$(TARGET)/third_party/icu/mac/icudt46l_dat.o

icudata.target.android_arm.mk:
OBJS := \
        $(obj).host/$(TARGET)/third_party/icu/android/icudt46l_dat.o

Unfortunately my GYP-fu isn't strong, I briefly tried to fix it in the icu.gyp file, but I resorted to manually fixing the icudata.*.android_arm.mk makefile and I was able to complete my V8 build."
/QUOTE ====

Indeed the above changes and `make android_arm.release -j4 i18nsupport=off` worked.


--
You received this message because this project is configured to send all issue notifications to this address.
You may adjust your notification preferences at:
https://code.google.com/hosting/settings

--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
--- You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to