Hello,
 
I have been trying to fix the same problem here, except I am 
on 32bit ubuntu, building ia3.release was quite a pain in the neck but I 
eventually did it successfuly using i18nsupport=off and werror=no
 
In the beginning I tried the command line as it is given in the tutorial 
but it seems that it is forgeting icu .a :
g++ -Iinclude main.cpp -o hello_world 
out/ia32.release/obj.target/tools/gyp/libv8_{base.ia32,snapshot,nosnapshot.ia32}.a
 
out/ia32.release/obj.target/third_party/icu/libicu{data,i18n,uc}.a -lpthread
 
Didn't work, huge lot of undefined references, so I tried :
g++ -Iinclude main.cpp -o hello_world 
out/ia32.release/obj.target/tools/gyp/libv8_{base.ia32,snapshot,nosnapshot.ia32}.a
 
out/ia32.release/obj.target/third_party/icu/libicu{data,i18n,uc}.a -lpthread
 
Well, this almost works but I still get some undefined references :
/home/vyann/v8/out/ia32.release/obj.target/v8_base.ia32/src/platform/time.o: 
In function `v8::internal::TimeTicks::Now()':
time.cc:(.text._ZN2v88internal9TimeTicks3NowEv+0x18): undefined reference 
to `clock_gettime'
/home/vyann/v8/out/ia32.release/obj.target/v8_base.ia32/src/platform/time.o: 
In function `v8::internal::TimeTicks::HighResolutionNow()':
time.cc:(.text._ZN2v88internal9TimeTicks17HighResolutionNowEv+0x18): 
undefined reference to `clock_gettime'
/home/vyann/v8/out/ia32.release/obj.host/icuuc/third_party/icu/source/common/udata.o:
 
In function `openCommonData(char const*, int, UErrorCode*)':
udata.cpp:(.text._ZL14openCommonDataPKciP10UErrorCode+0x214): undefined 
reference to `icudt46_dat'
udata.cpp:(.text._ZL14openCommonDataPKciP10UErrorCode+0x232): undefined 
reference to `icudt46_dat'
udata.cpp:(.text._ZL14openCommonDataPKciP10UErrorCode+0x253): undefined 
reference to `icudt46_dat'
collect2: ld returned 1 exit status
I can't really figure out what I forgot this time as I linked against all 
.a, does this have something to do with the i18nsupport=off that I used to 
make ia32.release ?

-- 
-- 
v8-users mailing list
[email protected]
http://groups.google.com/group/v8-users
--- 
You received this message because you are subscribed to the Google Groups 
"v8-users" 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/groups/opt_out.

Reply via email to