Comment #10 on issue 3112 by [email protected]: v8 goes into SIGILL on latest Raspbian wheezy
http://code.google.com/p/v8/issues/detail?id=3112

Whatever d8 prints is what it uses for default, so your binary will emit armv7 instruction which will sigill on armv6 devices.

The build option to disable armv7 is armv7=false (not 0)

Your build command has a number of deprecated (though still working) options wrt arm variants. You would want something like: armv7=false armfpu=vfp armfloatabi=hard and get rid of hardfp=on, v8_use_arm_eabi_hardfloat=true

To be on the safe side you can add armneon=off.

Other option of interest:
 * armthumb=on/off to compile for thumb (the C++ code, the JIT remains arm)
* unalignedaccess=on/off not all v6 device allow unaligned accesses, don't know about Pi.


--
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/groups/opt_out.

Reply via email to