Skip to content

Added arm64 support #204

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jul 11, 2019
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Fixed typo in test
  • Loading branch information
cmaglie committed May 7, 2019
commit 0efd889ae7d4ae005a3bcda52bc045d8fbdce2b1
8 changes: 4 additions & 4 deletions arduino/cores/tools_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ func TestFlavorCompatibility(t *testing.T) {
linuxarmbe := &os{"linux", "armbe"}
linuxarm64 := &os{"linux", "arm64"}
darwini386 := &os{"darwin", "386"}
darwinamd646 := &os{"darwin", "amd64"}
darwinamd64 := &os{"darwin", "amd64"}
freebsdi386 := &os{"freebsd", "386"}
freebsdamd64 := &os{"freebsd", "amd64"}
oses := []*os{
Expand All @@ -48,7 +48,7 @@ func TestFlavorCompatibility(t *testing.T) {
linuxarmbe,
linuxarm64,
darwini386,
darwinamd646,
darwinamd64,
freebsdi386,
freebsdamd64,
}
Expand All @@ -59,8 +59,8 @@ func TestFlavorCompatibility(t *testing.T) {
}
tests := []*test{
{&Flavor{OS: "i686-mingw32"}, []*os{windowsi386, windowsx8664}},
{&Flavor{OS: "i386-apple-darwin11"}, []*os{darwini386, darwinamd646}},
{&Flavor{OS: "x86_64-apple-darwin"}, []*os{darwinamd646}},
{&Flavor{OS: "i386-apple-darwin11"}, []*os{darwini386, darwinamd64}},
{&Flavor{OS: "x86_64-apple-darwin"}, []*os{darwinamd64}},

// Raspberry PI, BBB or other ARM based host
// PI: "arm-linux-gnueabihf"
Expand Down