disable x86 for freebsd

This commit is contained in:
Igor Klopov 2016-10-02 11:05:47 +00:00
parent 058f1f26b1
commit 030438c049

View File

@ -19,6 +19,8 @@ function dontBuild (nodeVersion, targetArch) {
if (/^v?0/.test(nodeVersion) &&
/^arm/.test(targetArch)) return true;
// some obstacles on freebsd
if (hostPlatform === 'freebsd' &&
targetArch === 'x86') return true;
if (/^v?0/.test(nodeVersion) &&
hostPlatform === 'freebsd') return true;
return false;