We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Building it on mac fails with error
../../../../go/pkg/mod/github.com/!holo!archivists/[email protected]/main.go:32:5: undefined: increaseOpenFileLimit
It's because build tags in rlimit files don't match darwin so changing rlimit_windows.go
//go:build windows // +build windows
to rlimit_other.go
//go:build !(linux || android) // +build !linux,!android
fixes it. (I changed filename because building it with the name rlimit_windows.go didn't work for me)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Building it on mac fails with error
It's because build tags in rlimit files don't match darwin so changing rlimit_windows.go
to rlimit_other.go
fixes it. (I changed filename because building it with the name rlimit_windows.go didn't work for me)
The text was updated successfully, but these errors were encountered: