On Fri, May 31, 2013 at 4:55 PM, dhruvbird <[email protected]> wrote: > Does the node build system include symbol and line# information in the > default optimized build as well? > If not, what's the way to do that?
It does but backtraces from release builds are not always useful; the compiler inlines functions, optimizes variables away, etc. `make -j8 -C out BUILDTYPE=Debug` builds a debug release. Replace -j8 with the number of cores in your machine. -- -- 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 --- You received this message because you are subscribed to the Google Groups "nodejs" 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.
