Skip to content
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

Linux arm64 #2

Open
wants to merge 22 commits into
base: main
Choose a base branch
from
Open
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
Next Next commit
Attempt to Fix Loop over Runtime Identifiers
Looks like the previous code wasn't properly looping. Hopefully this
works a bit better.
  • Loading branch information
iwillspeak committed Sep 29, 2018

Verified

This commit was signed with the committer’s verified signature.
TarikGul Tarik Gul
commit 42be63a1485470934b25c176ddb9e869c9d184d6
3 changes: 1 addition & 2 deletions build.sh
Original file line number Diff line number Diff line change
@@ -10,7 +10,6 @@ case `uname` in
Darwin) rids=("osx-x64")
platform="Mac"
;;
# TODO: Linux needs more than one target RID
Linux) rids=("linux-x64" "linux-arm64")
platform="Linux"
;;
@@ -19,7 +18,7 @@ case `uname` in
;;
esac

for rid in "$rids"
for rid in ${rids[@]}
do
# log out the RID decided on
echo "Compiling for $rid on $platform"