File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11#! /usr/bin/env bash
22
33
4- npm run build -M pc -b 32 && npm test || exit 1
5- npm run build -M pc -b 64 && npm test || exit 2
6- npm run build -M raspi2 && npm test || exit 3
4+ npm run build -- - M pc -b 32 && npm test || exit 1
5+ npm run build -- - M pc -b 64 && npm test || exit 2
6+ npm run build -- - M raspi2 && npm test || exit 3
77
88
99#
Original file line number Diff line number Diff line change @@ -24,7 +24,9 @@ var timeout = setTimeout(function()
2424
2525
2626// [Hack] Can't be able to use x86_64 as generic x86 64 bits CPU
27- var toolchainCpu = ( cpu === 'nocona' ) ? 'x86_64' : args . cpu_family ? 'armv7' : cpu
27+ var toolchainCpu = ( cpu === 'nocona' )
28+ ? 'x86_64'
29+ : ( args . cpu_family === 'arm' ) ? 'armv7ve' : cpu
2830
2931const LD_LIBRARY_PATH = require ( 'nodeos-cross-toolchain' ) + '/' + toolchainCpu + '-nodeos-linux-' + args . libc + '/lib'
3032
You can’t perform that action at this time.
0 commit comments