On Wed, Sep 19, 2012 at 10:41 AM, Sumit Aggarwal <[email protected]> wrote: > Commented following portion in deps/v8/tools/gyp/v8.gyp and compilation was > success with --without-snapshot option > 149 'conditions': [ > 150 ['armv7==1', { > 151 # The ARM Architecture Manual mandates VFPv3 > if NEON is > 152 # available. > 153 # The current V8 doesn't use d16-d31, so for > vfpv3-d16, we can > 154 # also enable vfp3 for the better performance. > 155 'conditions': [ > 156 # ['arm_neon!=1 and arm_fpu!="vfpv3" and > arm_fpu!="vfpv3-d16"', { > 157 # 'variables': { > 158 # 'mksnapshot_flags': [ > 159 # '--noenable_vfp3', > 160 # ], > 161 # }, > 162 # }], > 163 ],
Sumit, can you try this patch? https://gist.github.com/9c4d01a7d3091398a1be > i do not understand what is --without-snapshot option option and what > commented portion does. can someone please telll > I need to run executable on my board and check for error if any !! --without-snapshot disables precompiling the built-in objects (Array, String, etc.). There is a performance penalty but it's minor, it only affects startup times. -- Job Board: http://jobs.nodejs.org/ Posting guidelines: https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines You received this message because you are subscribed to the Google Groups "nodejs" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/nodejs?hl=en?hl=en
