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

[Go] Improve 32-bit support (GOARCH=386) #32

Open
joellubi opened this issue Jul 10, 2024 · 0 comments
Open

[Go] Improve 32-bit support (GOARCH=386) #32

joellubi opened this issue Jul 10, 2024 · 0 comments
Labels
Type: enhancement New feature or request

Comments

@joellubi
Copy link
Member

Describe the enhancement requested

There are several parts of the code that currently fail on 32-bit systems like 386.

  1. One problem is that the refCount int64 we currently use for reference-counted resources requires manual alignment on 32-bit systems when used with atomic.AddInt64. This was raised in [Go] parquet/pqarrow: panic: unaligned 64-bit atomic operation arrow#43186.
  2. Another problem specific to 386 arch is that certain functions with archictecture-specific implementations do not have variants defined for 386, causing them to panic when compiled for that system.

apache/arrow#43206 starts to address these issues for a narrow subset of the codebase. This issue is intended to track the remaining work needed to add full support across the codebase.

Component(s)

Go

@joellubi joellubi added the Type: enhancement New feature or request label Jul 10, 2024
@assignUser assignUser transferred this issue from apache/arrow Aug 30, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Type: enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant