Browse Source

compiler use gogcc, remove gcflags and asmflags (#269)

Kslr 5 years ago
parent
commit
359f84407a
1 changed files with 2 additions and 5 deletions
  1. 2 5
      infra/bazel/build.bzl

+ 2 - 5
infra/bazel/build.bzl

@@ -13,13 +13,10 @@ def _go_command(ctx):
   options = [
     "go",
     "build",
-    "-o", output_file.path,
-    "-compiler", "gc",
-    "-gcflags", '"all=-trimpath=${GOPATH}/src"',
-    "-asmflags", '"all=-trimpath=${GOPATH}/src"',
+    "-trimpath",
+    "-o", output_file.path, 
     "-ldflags", "'%s'" % ld_flags,
     "-tags", "'%s'" % ctx.attr.gotags,
-    "-trimpath",
     pkg,
   ]