Skip to content

Commit

Permalink
use armv6l prebuild for now (workaround #385)
Browse files Browse the repository at this point in the history
  • Loading branch information
hobbyquaker committed Aug 10, 2020
1 parent cd3c731 commit 6b7103f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion build_addon.sh
Expand Up @@ -26,17 +26,20 @@ esac
case $ARCH in
armv6l)
NODE_URL=https://unofficial-builds.nodejs.org/download/release/v${NODE_VERSION}/${NODE_NAME}.tar.xz
PREBUILT=$BUILD_DIR/prebuilt/$ARCH
;;
i686)
# Todo - Node 14 i686 (32bit) build https://github.com/rdmtc/RedMatic/issues/374
NODE_URL=https://unofficial-builds.nodejs.org/download/release/v${NODE_VERSION}/${NODE_NAME}.tar.xz
PREBUILT=$BUILD_DIR/prebuilt/$ARCH
;;
*)
NODE_URL=https://nodejs.org/dist/v${NODE_VERSION}/${NODE_NAME}.tar.xz
PREBUILT=$BUILD_DIR/prebuilt/armv6l
;;
esac

PREBUILT=$BUILD_DIR/prebuilt/$ARCH


ADDON_FILES=$BUILD_DIR/addon_files
ADDON_TMP=$BUILD_DIR/addon_tmp
Expand Down

0 comments on commit 6b7103f

Please sign in to comment.