Comparing version 4.4.1 to 4.5.0
{ | ||
"name": "zeromq", | ||
"version": "4.4.1", | ||
"version": "4.5.0", | ||
"description": "Prebuilt bindings for node.js to ZeroMQ", | ||
@@ -5,0 +5,0 @@ "main": "index", |
@@ -25,5 +25,5 @@ # zeromq | ||
* OS X/Darwin 64-bit | ||
* Linux 64-bit | ||
* Windows (64-bit and 32-bit) | ||
* OS X/Darwin (x64) | ||
* Linux (x64, ARMv7 and ARMv8) | ||
* Windows (x64 and x86) | ||
@@ -83,3 +83,3 @@ Use **zeromq** and take advantage of the *elegant simplicity of binaries*. | ||
* **Option 1:** Install [Visual C++ Build Tools](http://go.microsoft.com/fwlink/?LinkId=691126) using the *Default Install* option. | ||
* **Option 2:** Install [Visual Studio 2015](https://www.visualstudio.com/products/visual-studio-community-vs) (or modify an existing installation) and select *Common Tools for Visual C++* during setup. | ||
* **Option 2:** Install [Visual Studio 2015](https://www.visualstudio.com/products/visual-studio-community-vs) (or modify an existing installation) and select *Common Tools for Visual C++* during setup. | ||
@@ -86,0 +86,0 @@ > :bulb: [Windows Vista / 7 only] requires [.NET Framework 4.5.1](http://www.microsoft.com/en-us/download/details.aspx?id=40773) |
@@ -7,5 +7,8 @@ var exec = require('child_process').exec; | ||
if (platform === 'linux' && arch === 'arm') { | ||
arch += 'v' + process.config.variables.arm_version; | ||
pbi += ' --arch=' + arch; | ||
if ( | ||
platform === 'linux' && | ||
(arch === 'arm' || arch === 'arm64') | ||
) { | ||
var armv = (arch === 'arm64') ? '8' : process.config.variables.arm_version; | ||
pbi += ' --arch=armv' + armv; | ||
} | ||
@@ -12,0 +15,0 @@ |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
170649
2506