@agoric/cosmos 0.35.0-u11.0 → 0.35.0-u11wf.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,14 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [0.35.0-u11wf.0](https://github.com/Agoric/agoric-sdk/compare/@agoric/cosmos@0.35.0-u11.0...@agoric/cosmos@0.35.0-u11wf.0) (2023-09-23)
7
+
8
+ **Note:** Version bump only for package @agoric/cosmos
9
+
10
+
11
+
12
+
13
+
6
14
  ## [0.35.0-u11.0](https://github.com/Agoric/agoric-sdk/compare/@agoric/cosmos@0.34.1...@agoric/cosmos@0.35.0-u11.0) (2023-08-24)
7
15
 
8
16
 
package/Makefile CHANGED
@@ -32,13 +32,18 @@ ldflags = -X github.com/cosmos/cosmos-sdk/version.Name=$(VersionName) \
32
32
  -X "github.com/cosmos/cosmos-sdk/version.BuildTags=$(build_tags_comma_sep)"
33
33
 
34
34
  gcflags =
35
+ shared_ldflags = $(ldflags)
35
36
 
36
37
  ifneq ($(GO_DEBUG),)
37
38
  ldflags += -compressdwarf=false
38
39
  gcflags += -N -l
40
+ else ifeq ($(shell uname -s 2>/dev/null),Darwin)
41
+ # Darwin's latest ld crashes with https://github.com/Agoric/agoric-sdk/issues/8367
42
+ shared_ldflags += -w
39
43
  endif
40
44
 
41
45
  BUILD_FLAGS := -tags "$(build_tags)" -gcflags '$(gcflags)' -ldflags '$(ldflags)'
46
+ SHARED_BUILD_FLAGS := -tags "$(build_tags)" -gcflags '$(gcflags)' -ldflags '$(shared_ldflags)'
42
47
 
43
48
  all: compile-chain
44
49
 
@@ -69,7 +74,8 @@ compile-gyp:
69
74
  rm -f binding.gyp
70
75
 
71
76
  compile-libdaemon: go-mod-cache
72
- go build -v $(MOD_READONLY) $(BUILD_FLAGS) -buildmode=c-shared -o build/libagcosmosdaemon.so ./cmd/libdaemon/main.go
77
+ go build -v $(MOD_READONLY) $(SHARED_BUILD_FLAGS) -buildmode=c-shared \
78
+ -o build/libagcosmosdaemon.so ./cmd/libdaemon/main.go
73
79
 
74
80
  go-mod-cache: go.sum
75
81
  @echo "--> Download go modules to local cache"
package/git-revision.txt CHANGED
@@ -1 +1 @@
1
- 92b6cd724
1
+ faf9ba6ab
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agoric/cosmos",
3
- "version": "0.35.0-u11.0",
3
+ "version": "0.35.0-u11wf.0",
4
4
  "description": "Connect JS to the Cosmos blockchain SDK",
5
5
  "parsers": {
6
6
  "js": "mjs"
@@ -35,5 +35,5 @@
35
35
  "publishConfig": {
36
36
  "access": "public"
37
37
  },
38
- "gitHead": "92b6cd72484079b0349d8ccfa4510aeb820e8d67"
38
+ "gitHead": "faf9ba6ab8b2b69bf25f435f262f0b5bd2f2bc97"
39
39
  }