We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9694318 commit d686effCopy full SHA for d686eff
programs/main.cpp
@@ -64,6 +64,17 @@ const char * __ubsan_default_options()
64
#pragma clang diagnostic pop
65
#endif
66
67
+#if defined(USE_MUSL) && defined(__aarch64__)
68
+void main_musl_compile_stub(int arg)
69
+{
70
+ jmp_buf buf1;
71
+ sigjmp_buf buf2;
72
+
73
+ setjmp(buf1);
74
+ sigsetjmp(buf2, arg);
75
+}
76
+#endif
77
78
/// Universal executable for various clickhouse applications
79
int mainEntryClickHouseBenchmark(int argc, char ** argv);
80
int mainEntryClickHouseCheckMarks(int argc, char ** argv);
0 commit comments