Skip to content

Commit

Permalink
chore: build evmosd without optimizations
Browse files Browse the repository at this point in the history
  • Loading branch information
hanchon committed Oct 6, 2024
1 parent 8d03854 commit 6bf367d
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions playground/filesmanager/build_evmos.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,9 @@ func BuildEvmos(path string) error {
return err
}

cmd = exec.Command("make", "build")
_, err := cmd.CombinedOutput()
cmd = exec.Command("make", "build", "COSMOS_BUILD_OPTIONS=nooptimization,nostrip")
out, err := cmd.CombinedOutput()
fmt.Println(string(out))
return err
}

Expand Down

0 comments on commit 6bf367d

Please sign in to comment.