Skip to content

Commit 83d753e

Browse files
authored
Merge pull request #227 from TIBCOSoftware/issue-226
Fixed issue #226
2 parents 79eb800 + cecb13f commit 83d753e

File tree

9 files changed

+57
-15
lines changed

9 files changed

+57
-15
lines changed

Gopkg.lock

+2-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Gopkg.toml

+4
Original file line numberDiff line numberDiff line change
@@ -120,3 +120,7 @@
120120
[[constraint]]
121121
branch = "master"
122122
name = "github.com/golang/protobuf"
123+
124+
[[override]]
125+
name = "github.com/chewxy/math32"
126+
revision = "9a000fcb79dff2019bd78fc28bd676198ff3a616"

build.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -411,7 +411,7 @@ func releaseGatewayWithTarget(os string, arch string) (string, error) {
411411
extension = ".exe"
412412
}
413413
gateway := fmt.Sprintf("release/mashling-gateway-%s-%s%s", os, arch, extension)
414-
cmd := exec.Command(Go, "build", "-tags", "release",
414+
cmd := exec.Command(Go, "build", "-tags", "release noasm",
415415
"-ldflags", ReleaseLdflags(),
416416
"-o", gateway,
417417
fmt.Sprintf("%s/cmd/mashling-gateway", ImportPath))
@@ -431,7 +431,7 @@ func releaseCLIWithTarget(os string, arch string) (string, error) {
431431
extension = ".exe"
432432
}
433433
cli := fmt.Sprintf("release/mashling-cli-%s-%s%s", os, arch, extension)
434-
cmd := exec.Command(Go, "build", "-tags", "release",
434+
cmd := exec.Command(Go, "build", "-tags", "release noasm",
435435
"-ldflags", ReleaseLdflags(),
436436
"-o", cli,
437437
fmt.Sprintf("%s/cmd/mashling-cli", ImportPath))

vendor/github.com/chewxy/math32/abs.go

+1-10
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/chewxy/math32/exp_stub.s

+7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/chewxy/math32/log_stub.s

+7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/chewxy/math32/remainder_stub.s

+6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/chewxy/math32/sqrt_stub.s

+7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/gorgonia.org/gorgonia/mathutils_go.go

+21
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)