can I know compile option on node.js binary?
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: "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?
You must Sign in before you can post messages.
You do not have the permission required to post.
|
 |
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)
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.
You do not have the permission required to post.
|
 |
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?
You must Sign in before you can post messages.
You do not have the permission required to post.
|
|
|