-
Notifications
You must be signed in to change notification settings - Fork 511
Alpine C Binding #105
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
Alpine C Binding #105
Conversation
Added Alpine instructions
README.md
Outdated
@@ -24,6 +24,12 @@ Still here? To build the H3 C library, you'll need a C compiler (tested with `gc | |||
|
|||
#### Install build-time dependencies | |||
|
|||
* Alpine | |||
``` | |||
# Installing the bare build buid requirements |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should this read the bare build requirements
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fixed
Thanks for your PR. Just a heads up I'm opening a PR to remove the unnecessary C++ dependency: #107 |
README.md
Outdated
* Alpine | ||
``` | ||
# Installing the bare build buid requirements | ||
apk add cmake make gcc libtool musl-dev g++ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
now that @isaacbrodsky merged his PR, you can drop g++
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done
Fixed typo + removed g++ from requirements
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM - thanks for submitting!
* Alpine | ||
``` | ||
# Installing the bare build requirements | ||
apk add cmake make gcc libtool musl-dev |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I wonder if https://pkgs.alpinelinux.org/package/v3.3/main/x86/libc-dev is the package we should recommend? I wasn't able to find a good example of these instructions.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do you mean run more tests?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I can try it later, unless you want to update the PR. Since these instructions work, I can merge them after CI finishes.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
can double-check tomorrow
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
make test succeeded + tested with some examples from the README
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
also works with libc-dev instead of musl-dev.
Alpine C Binding
See #103