Skip to content

Commit

Permalink
Adjust arm build
Browse files Browse the repository at this point in the history
  • Loading branch information
RPRX authored Jun 28, 2020
1 parent 19c5014 commit 4947537
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions main/targets.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ def gen_targets(matrix):
foreign_go_binary(
name = bin_name,
pkg = pkg,
output = "w" + output + "_armv5",
output = "w" + output,
os = os,
arch = arch,
arm = "5",
Expand Down Expand Up @@ -105,7 +105,7 @@ def gen_targets(matrix):
foreign_go_binary(
name = bin_name,
pkg = pkg,
output = output+"_armv7",
output = output + "_armv7",
os = os,
arch = arch,
arm = "7",
Expand All @@ -120,7 +120,7 @@ def gen_targets(matrix):
foreign_go_binary(
name = bin_name,
pkg = pkg,
output = output+"_armv6",
output = output + "_armv6",
os = os,
arch = arch,
arm = "6",
Expand All @@ -135,7 +135,7 @@ def gen_targets(matrix):
foreign_go_binary(
name = bin_name,
pkg = pkg,
output = output+"_armv5",
output = output,
os = os,
arch = arch,
arm = "5",
Expand Down

0 comments on commit 4947537

Please sign in to comment.