Compiling/running ia32 binaries on an x86_64 Linux machine should work just
fine. Make sure you have the appropriate toolchain and libraries installed.

Quick test:
$ echo -e '#include <stdio.h>\nint main() { printf("Hello world\\n"); }' >
test.cc
$ g++ -m32 test.cc -o test.bin
$ file test.bin
Should say "test.bin: ELF 32-bit LSB executable", and running ./test.bin
should print "Hello world". Once you got that working, try building V8
again.


On Mon, Mar 31, 2014 at 9:51 AM, Den Chiks <denbha...@gmail.com> wrote:

> I suppose it hints that you cannot use libarry compiled for i32 target on
> x86_64 machine. Be more cautious to comilation error messages...
>
> --
> --
> v8-users mailing list
> v8-users@googlegroups.com
> 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 v8-users+unsubscr...@googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.
>

-- 
-- 
v8-users mailing list
v8-users@googlegroups.com
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 v8-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to