-
Notifications
You must be signed in to change notification settings - Fork 68
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
chore(build): make addon buildable as static library #119
Conversation
- Require libcom_err when building a static library because the code accesses `error_message()` which comes from it - Use `-l` prefix for included libs for Windows The goal here is to bundle this library as part of the `mongosh` binary itself.
@addaleax LGTM, is there a Jira ticket for this? |
@mbroadst No, not yet. Edit: Opened https://jira.mongodb.org/browse/NODE-2956 for this. |
@mbroadst Small ping? :) |
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, adding the Node team for review
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 🙂
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
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 👍
Description
because the code accesses
error_message()
whichcomes from it
-l
prefix for included libs for WindowsThe goal here is to bundle this library as part of the
mongosh
binary once we start enabling kerberos functionality in it.
I figured that opening a pull request early was a good idea so that
we might not need to wait for another kerberos release once we
start the actual work itself :)