Account Options

  1. Sign in
The old Google Groups will be going away soon, but your browser is incompatible with the new version.
Google Groups Home
« Groups Home
can I know compile option on node.js binary?
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  3 messages - Collapse all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
Outsider (JeongHoon Byun)  
View profile  
 More options Nov 15 2012, 8:58 pm
From: "Outsider (JeongHoon Byun)" <outside...@gmail.com>
Date: Fri, 16 Nov 2012 10:58:12 +0900
Local: Thurs, Nov 15 2012 8:58 pm
Subject: can I know compile option on node.js binary?

node.js have some compile option like --debug or --with-dtrace
( https://github.com/joyent/node/blob/master/configure )

How can I check which options are enabled or disabled on node.js binary?

--
/************************************************
Outsider (JeongHoon Byun)
Programmer & Hacker

Blog : http://blog.outsider.ne.kr
Twitter : @Outsideris <http://twitter.com/Outsideris>
G-Talk : outsideris@ <outside...@naver.com>gmail.com
Github : https://github.com/outsideris
*************************************************/


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Ben Noordhuis  
View profile  
 More options Nov 15 2012, 9:04 pm
From: Ben Noordhuis <i...@bnoordhuis.nl>
Date: Fri, 16 Nov 2012 03:04:34 +0100
Local: Thurs, Nov 15 2012 9:04 pm
Subject: Re: [nodejs] can I know compile option on node.js binary?
On Fri, Nov 16, 2012 at 2:58 AM, Outsider (JeongHoon Byun)

<outside...@gmail.com> wrote:
> node.js have some compile option like --debug or --with-dtrace
> ( https://github.com/joyent/node/blob/master/configure )

> How can I check which options are enabled or disabled on node.js binary?

You probably want process.config.  It doesn't contain compile or link
flags but it will give you a general idea of the build settings.

$ node -p process.config
{ target_defaults:
   { cflags: [],
     default_configuration: 'Release',
     defines: [],
     include_dirs: [],
     libraries: [] },
  variables:
   { clang: 0,
     gcc_version: 46,
     host_arch: 'x64',
     node_install_npm: true,
     node_prefix: '/home/bnoordhuis/opt/node',
     node_shared_cares: false,
     node_shared_http_parser: false,
     node_shared_openssl: false,
     node_shared_v8: false,
     node_shared_zlib: false,
     node_unsafe_optimizations: 0,
     node_use_dtrace: false,
     node_use_etw: false,
     node_use_openssl: true,
     node_use_systemtap: false,
     target_arch: 'x64',
     v8_enable_gdbjit: 0,
     v8_no_strict_aliasing: 1,
     v8_use_snapshot: true } }


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Shigeki Ohtsu  
View profile  
 More options Nov 15 2012, 9:05 pm
From: Shigeki Ohtsu <oh...@iij.ad.jp>
Date: Fri, 16 Nov 2012 11:05:15 +0900
Local: Thurs, Nov 15 2012 9:05 pm
Subject: Re: [nodejs] can I know compile option on node.js binary?

http://www.nodejs.org/api/process.html#process_process_config

See outputs of  `process.config`.

http://www.nodejs.org/api/process.html#process_process_config

(2012/11/16 10:58), Outsider (JeongHoon Byun) wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »