Skip to content

Commit

Permalink
build: add vcbuild tar-headers target
Browse files Browse the repository at this point in the history
Adds option to vcbuild.bat to build header package.
  • Loading branch information
gibfahn committed May 9, 2016
1 parent 8d65f17 commit 60210c9
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/install.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,11 +140,11 @@ def headers(action):
], 'include/node/')

# Add the expfile that is created on AIX
if os.isfile('out/Release/node.exp'):
if os.path.isfile('out/Release/node.exp'):
action(['out/Release/node.exp'], 'include/node/')

# Add the x64 windows libfile
if os.isfile('Release/node.lib'):
if os.path.isfile('Release/node.lib'):
action(['Release/node.lib'], 'include/node/')

subdir_files('deps/v8/include', 'include/node/', action)
Expand Down
14 changes: 14 additions & 0 deletions vcbuild.bat
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ set nosnapshot=
set test_args=
set msi=
set upload=
set tar_headers=
set licensertf=
set jslint=
set buildnodeweak=
Expand Down Expand Up @@ -55,6 +56,7 @@ if /i "%1"=="nosnapshot" set nosnapshot=1&goto arg-ok
if /i "%1"=="noetw" set noetw=1&goto arg-ok
if /i "%1"=="noperfctr" set noperfctr=1&goto arg-ok
if /i "%1"=="licensertf" set licensertf=1&goto arg-ok
if /i "%1"=="tar-headers" set tar_headers=1&goto arg-ok
if /i "%1"=="test" set test_args=%test_args% addons doctool known_issues message parallel sequential -J&set jslint=1&set build_addons=1&goto arg-ok
if /i "%1"=="test-ci" set test_args=%test_args% %test_ci_args% -p tap --logfile test.tap addons doctool known_issues message sequential parallel&set build_addons=1&goto arg-ok
if /i "%1"=="test-addons" set test_args=%test_args% addons&set build_addons=1&goto arg-ok
Expand Down Expand Up @@ -246,6 +248,17 @@ ssh -F %SSHCONFIG% %STAGINGSERVER% "touch nodejs/%DISTTYPEDIR%/v%FULLVERSION%/no
:run
@rem Run tests if requested.

:tar-headers
@rem build headers package
if "%tar_headers%"=="" goto build-node-weak
set HEADERS_ONLY=1
set TARNAME=node-%FULLVERSION%
python tools\install.py install %TARNAME% ""
7z a %TARNAME%-headers.tar %TARNAME%
rmdir /s /q %TARNAME%
7z a %TARNAME%-headers.tar.gz %TARNAME%-headers.tar
del %TARNAME%-headers.tar

:build-node-weak
@rem Build node-weak if required
if "%buildnodeweak%"=="" goto build-addons
Expand Down Expand Up @@ -316,6 +329,7 @@ echo Examples:
echo vcbuild.bat : builds release build
echo vcbuild.bat debug : builds debug build
echo vcbuild.bat release msi : builds release build and MSI installer package
echo vcbuild.bat tar-headers : builds header package with node.lib
echo vcbuild.bat test : builds debug build and runs tests
echo vcbuild.bat build-release : builds the release distribution as used by nodejs.org
echo vcbuild.bat enable-vtune : builds nodejs with Intel VTune profiling support to profile JavaScript
Expand Down

0 comments on commit 60210c9

Please sign in to comment.