-
Notifications
You must be signed in to change notification settings - Fork 24
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
Build problem on Debian #60
Comments
Presumably you have
If its complaining about string prep bindings not being built it will fallback to javascript fallbacks. Let me knock up a quick branch to test in travis with your updates and update you. |
I've added your updates, we didn't have a bug before and we don't have one now with your update so I'm happy to merge if you would like me too https://travis-ci.org/node-xmpp/node-stringprep/builds/34188882 |
Hi @lloydwatkin Hardcoding these will probably break a different platform somewhere, so I'll update the Debian ticket to have |
any update? |
@dodo does the branch https://github.com/node-xmpp/node-stringprep/tree/issues/60 fix things for you? If so I'm happy to merge and roll out. |
ah yes, hadn't seen this branch before. and yes its working :) |
Will merge and deploy first thing tomorrow.
|
Have released as |
This is now causing issues on other OSs :( |
The debian bug looks like its reported as fixed. Does this mean I can revert the change included? |
@lloydwatkin Just tested with icu 52.1-6 and node-stringprep installs like a charm. EDIT: ...which means nothing since I'm using the version with the patch. Re-testing now. |
@shimaore great, will revert the change and publish as a patch update. Thanks! |
Done |
When trying to build
node-stringprep
(master) on recent Debian (testing
) Linux amd64, the linker step doesn't work properly and tries to link to V8 (which I assume shouldn't happen since those symbols will be provided by Node.js at the time the module is loaded?).The output of
icu-config --ldflags
is:which led me to Debian #759792.
If I manually replace the call to
icu-config
inbinding.gyp
with:the build completes, but
npm test
then complains aboutand I just wanted to make sure this was OK before I update the Debian ticket, since I've never build
node-stringprep
before and I don't know whether theCannot load ...
messages are expected or not. Thanks :)The text was updated successfully, but these errors were encountered: