Skip to content

Commit

Permalink
Update buildAll.sh to fix "illegal instruction"
Browse files Browse the repository at this point in the history
Update buildAll.sh to fix the runtime: illegal instruction on mips (mipsle) platform.
  • Loading branch information
cxjava committed Jun 21, 2019
1 parent d329b08 commit 93f3f65
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cli/brook/buildAll.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ GOOS=linux GOARCH=arm64 go build -o brook_linux_arm64 .
GOOS=linux GOARCH=arm GOARM=7 go build -o brook_linux_arm7 .
GOOS=linux GOARCH=arm GOARM=6 go build -o brook_linux_arm6 .
GOOS=linux GOARCH=arm GOARM=5 go build -o brook_linux_arm5 .
GOOS=linux GOARCH=mips go build -o brook_linux_mips .
GOOS=linux GOARCH=mipsle go build -o brook_linux_mipsle .
GOOS=linux GOARCH=mips GOMIPS=softfloat go build -o brook_linux_mips .
GOOS=linux GOARCH=mipsle GOMIPS=softfloat go build -o brook_linux_mipsle .
GOOS=linux GOARCH=mips64 go build -o brook_linux_mips64 .
GOOS=linux GOARCH=mips64le go build -o brook_linux_mips64le .
GOOS=linux GOARCH=ppc64 go build -o brook_linux_ppc64 .
Expand Down

0 comments on commit 93f3f65

Please sign in to comment.