-
Notifications
You must be signed in to change notification settings - Fork 29.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add configure flag for building a shared library that can be embedded in other applications (like Electron). Add flags --without-bundled-v8 and --without-v8-platform to control V8 dependencies used. PR-URL: #6994 Ref: #7487 Ref: #9385 Reviewed-By: Ben Noordhuis <[email protected]> Reviewed-By: Fedor Indutny <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Michael Dawson <[email protected]>
- Loading branch information
Showing
7 changed files
with
154 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,20 @@ | ||
import os,re | ||
import os | ||
import re | ||
|
||
node_version_h = os.path.join(os.path.dirname(__file__), '..', 'src', | ||
node_version_h = os.path.join( | ||
os.path.dirname(__file__), | ||
'..', | ||
'src', | ||
'node_version.h') | ||
|
||
f = open(node_version_h) | ||
|
||
for line in f: | ||
if re.match('#define NODE_MAJOR_VERSION', line): | ||
if re.match('^#define NODE_MAJOR_VERSION', line): | ||
major = line.split()[2] | ||
if re.match('#define NODE_MINOR_VERSION', line): | ||
if re.match('^#define NODE_MINOR_VERSION', line): | ||
minor = line.split()[2] | ||
if re.match('#define NODE_PATCH_VERSION', line): | ||
if re.match('^#define NODE_PATCH_VERSION', line): | ||
patch = line.split()[2] | ||
|
||
print '%(major)s.%(minor)s.%(patch)s'% locals() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters