From 8e8006aa0c095ced5436a2e0b4d02e9788f29a8f Mon Sep 17 00:00:00 2001 From: Mark Lussier Date: Sat, 13 May 2017 09:45:38 -0700 Subject: [PATCH] Add ARM to the list of platforms built (#20) Summit runs great on the Raspberry PI and this PR builds a linux/arm package by default. --- README.md | 2 +- resources/build.sh | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index f47cc97..67522e2 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ If you want to try the latest version, you can build SummitDB from the master br ### Building SummitDB -SummitDB can be compiled and used on Linux, OSX, Windows, FreeBSD, and probably others since the codebase is 100% Go. We support both 32 bit and 64 bit systems. Go must be installed on the build machine. +SummitDB can be compiled and used on Linux, OSX, Windows, FreeBSD, ARM (Raspberry PI) and probably others since the codebase is 100% Go. We support both 32 bit and 64 bit systems. Go must be installed on the build machine. To build simply: diff --git a/resources/build.sh b/resources/build.sh index cf604bb..a702013 100755 --- a/resources/build.sh +++ b/resources/build.sh @@ -56,6 +56,7 @@ if [ "$1" == "package" ]; then package "Windows" "windows" "amd64" package "Mac" "darwin" "amd64" package "Linux" "linux" "amd64" + package "ARM" "linux" "arm" package "FreeBSD" "freebsd" "amd64" exit fi