We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a20d6b2 commit 422ad17Copy full SHA for 422ad17
binlog_json_parser/CMakeLists.txt
@@ -52,8 +52,6 @@ check_c_source_compiles("
52
#if defined(__GLIBC__)
53
#error \"This is glibc, not musl\"
54
#endif
55
-// If we get here, it's likely musl (or another libc)
56
-// We can add additional musl-specific checks here
57
#include <stdio.h>
58
int main() { return 0; }
59
" IS_MUSL)
binlog_json_parser/Dockerfile
@@ -14,10 +14,9 @@ COPY . .
14
15
RUN cmake -S . -B build -G Ninja \
16
-DCMAKE_BUILD_TYPE=Release \
17
- -DBUILD_SHARED_LIBS=OFF \
18
-DCMAKE_C_COMPILER=clang \
19
-DCMAKE_CXX_COMPILER=clang++ \
20
- && ninja -C build -v
+ && ninja -C build -v
21
22
FROM scratch AS artifact
23
0 commit comments