Re: [v8-users] My program was blocked at NewFromOneByte functions

2014-12-12 Thread Ben Noordhuis
On Fri, Dec 12, 2014 at 6:40 AM, dan wu wudan@gmail.com wrote: V8's version is 3.20.There is some infomation from pstack command. Thread 4 (Thread 0x7f289ffb7700 (LWP 16030)): #0 0x003b0ca0dfe4 in __lll_lock_wait () from /lib64/libpthread.so.0 #1 0x003b0ca09333 in _L_lock_892

[v8-users] `make quickcheck` runs 32-bit tests when I'm on a 64-bit OS

2014-12-12 Thread Isiah Meadows
I'm not set up for cross-compilation, so I get all kinds of errors in building for IA32. But, when I run `make quickcheck`, it starts building/testing for IA32 instead of my native architecture x86_64. How can I fix this? -- -- v8-users mailing list v8-users@googlegroups.com

Re: [v8-users] `make quickcheck` runs 32-bit tests when I'm on a 64-bit OS

2014-12-12 Thread Caitlin Potter
`make quickcheck` will build “fast” modes for each arch (basically “release” and “optdebug” modes for each arch, starting with ia32) — you can force an x64 build with `make x64.quickcheck` or `make x64.mode.quickcheck` On Dec 12, 2014, at 11:22 PM, Isiah Meadows impinb...@gmail.com wrote: