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

2014-12-14 Thread Isiah Meadows
@Caitlin, thank you! -- -- 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

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

2014-12-13 Thread Jakob Kummerow
On Sat, Dec 13, 2014 at 5:22 AM, Isiah Meadows impinb...@gmail.com wrote: 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 This is by design. As soon as you go beyond simple changes

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

2014-12-13 Thread Mathias Bynens
On Sat, Dec 13, 2014 at 5:22 AM, Isiah Meadows impinb...@gmail.com wrote: 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

[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: