Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
node-sqlite3
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
俞永鹏
node-sqlite3
Commits
ec249d78
Commit
ec249d78
authored
Jan 13, 2014
by
Dane Springmeyer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add windows multi arch/version build script
parent
707d5cf9
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
49 additions
and
0 deletions
+49
-0
build.bat
scripts/build.bat
+49
-0
No files found.
scripts/build.bat
0 → 100644
View file @
ec249d78
@rem setup
@rem git clone git://github.com/marcelklehr/nodist.git
@rem create ~/.node_pre_gyprc
@rem note, for 64 builds you may need to win7 sdk terminal
@rem https://github.com/TooTallNate/node-gyp/issues/112
set PATH=c:\dev2\nodist\bin;%PATH%
set PATH=node_modules\.bin;%PATH%
set PATH=%PATH%;c:\Python27
@rem 32 bit
set NODIST_X64=0
nodist use stable
node -e "console.log(process.version + ' ' + process.arch)"
node-pre-gyp clean
npm install --build-from-source
npm test
node-pre-gyp package publish
node-pre-gyp clean
@rem 64 bit
@ rem cannot open input file 'kernel32.lib' http://www.microsoft.com/en-us/download/details.aspx?id=4422
set NODIST_X64=1
nodist use stable
node -e "console.log(process.version + ' ' + process.arch)"
node-pre-gyp clean
npm install --build-from-source
npm test
node-pre-gyp package publish
node-pre-gyp clean
@ rem 32 bit v0.8x
set NODIST_X64=0
nodist use v0.8
node -e "console.log(process.version + ' ' + process.arch)"
node-pre-gyp clean
npm install --build-from-source
npm test
node-pre-gyp package publish
node-pre-gyp clean
@rem 64 bit v0.8.x
set NODIST_X64=1
nodist use v0.8
node -e "console.log(process.version + ' ' + process.arch)"
node-pre-gyp clean
npm install --build-from-source
npm test
node-pre-gyp package publish
node-pre-gyp clean
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment