-
Notifications
You must be signed in to change notification settings - Fork 75
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
Missing "execinfo.h" on Node Alpine #70
Comments
@ddopson Busy time? :) |
Any update on this issue? EDIT: I've managed to fix the issue by adding the following content to my Dockerfile: RUN apk add --no-cache --no-progress --virtual .gyp \
python \
make \
g++ \
libexecinfo-dev \
libexecinfo Now, I'm receiving the following error:
|
Sorry, I'm not actively maintaining this module. I'll gladly help you to
the degree I'm able (and notice), but I don't even have node-js installed
at this point.
If you're passionate about this module, perhaps you'd be interested to
become the official maintainer for it?
…On Sat, Feb 6, 2021 at 8:46 AM Iosif Nicolae ***@***.***> wrote:
Any update on this issue?
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#70 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAHJ3X274C7ABPOKKBSCKV3S5VBZ3ANCNFSM4MVLPQPA>
.
|
This fixes it: #76. Could you merge an publish 1.3.1? |
Nevermind, the current unrelease fixed is better. |
Good news: I looked at the "network" page for this repo, and found this fork: https://github.com/node-3d/segfault-raub I've tried it, and I think it works fine on Node Alpine. (no errors during installation nor pod startup at least; I have not hit a segfault since installing it though, so cannot yet completely confirm it works) Unfortunately, the fork developer changed the API to remove some of the customization options, such that the segfaults are always written to the standard-error stream, and written to a local It's a bit annoying that you can't add a callback hook to customize the log messages, or change the log filename, but it does get the job done. |
If someone wants to take over official maintenance for this package, we can
change the docs on my page to refer to the new official version. I don't
have the cycles to pay attention to this module.
…On Tue, Jan 11, 2022 at 7:09 PM Stephen Wicklund ***@***.***> wrote:
Good news: I looked at the "network" page
<https://github.com/ddopson/node-segfault-handler/network> for this repo,
and found this fork: https://github.com/node-3d/segfault-raub
I've tried it, and I *think* it works fine on Node Alpine. (no errors
during installation nor pod startup at least; I have not hit a segfault
since installing it though, so cannot completely confirm it works)
Unfortunately, the fork developer changed the API to remove some of the
customization options, such that the segfaults are always written to the
standard-error stream, and written to a local segfault.log file (if it
already exists).
It's a bit annoying that you can't add a callback hook to customize the
log messages, or change the log filename, but it does get the job done.
—
Reply to this email directly, view it on GitHub
<#70 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAHJ3X2IQK65AASB7UAFBKTUVTBFDANCNFSM4MVLPQPA>
.
Triage notifications on the go with GitHub Mobile for iOS
<https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675>
or Android
<https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub>.
You are receiving this because you were mentioned.Message ID:
***@***.***>
|
Hi,
I've got an issue running an NPM install with this module in Docker (node-alpine):
The issue:
I tried the fix found there:
nodejs/node-report#86 (comment)
I got a lot of red warnings like:
warning: cast between incompatible function types from 'void
But the install go through and the docker image is built successfully.
However it is still not working, it seems it doesn't find the backtrace tool when a
SIGSEGV
signal happens:Any clue?
The text was updated successfully, but these errors were encountered: