Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Correct build tags #22

Merged
merged 1 commit into from Jun 2, 2023
Merged

Correct build tags #22

merged 1 commit into from Jun 2, 2023

Conversation

ale-linux
Copy link
Contributor

The previous patch used

//go:build amd64 || arm64

as build tag for 64-bit architectures. However this was unvoluntarily discarding other 64-bit platforms (such as wasm) that were previously supported. The issue has been fixed by replacing the tag with

//go:build !386 && !arm

The previous patch used

```
//go:build amd64 || arm64
```

as build tag for 64-bit architectures. However this was unvoluntarily
discarding other 64-bit platforms (such as `wasm`) that were previously
supported. The issue has been fixed by replacing the tag with

```
//go:build !386 && !arm
```

Signed-off-by: Alessandro Sorniotti <aso@zurich.ibm.com>
@ale-linux ale-linux requested a review from a team as a code owner June 2, 2023 17:36
@yacovm yacovm merged commit 9e02669 into hyperledger:main Jun 2, 2023
2 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants