File tree 2 files changed +6
-2
lines changed
2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 1
1
FROM alpine:latest
2
2
3
- RUN apk update && apk add cmake make git g++ bash curl-dev zlib-dev
3
+ RUN apk add --no-cache cmake make g++ git bash curl-dev zlib-dev libexecinfo -dev
Original file line number Diff line number Diff line change 240
240
# endif
241
241
# endif
242
242
243
+ # if BACKWARD_HAS_BACKTRACE_SYMBOL == 1
244
+ # include < dlfcn.h>
245
+ # endif
246
+
243
247
# if (BACKWARD_HAS_BACKTRACE == 1) || (BACKWARD_HAS_BACKTRACE_SYMBOL == 1)
244
248
// then we shall rely on backtrace
245
249
# include < execinfo.h>
254
258
// #define BACKWARD_HAS_UNWIND 1
255
259
// - unwind comes from libgcc, but I saw an equivalent inside clang itself.
256
260
// - with unwind, the stacktrace is as accurate as it can possibly be, since
257
- // this is used by the C++ runtine in gcc/clang for stack unwinding on
261
+ // this is used by the C++ runtime in gcc/clang for stack unwinding on
258
262
// exception.
259
263
// - normally libgcc is already linked to your program by default.
260
264
//
You can’t perform that action at this time.
0 commit comments