Skip to content

Commit 422ad17

Browse files
committed
Fix issue with escape_json
1 parent a20d6b2 commit 422ad17

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

binlog_json_parser/CMakeLists.txt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,6 @@ check_c_source_compiles("
5252
#if defined(__GLIBC__)
5353
#error \"This is glibc, not musl\"
5454
#endif
55-
// If we get here, it's likely musl (or another libc)
56-
// We can add additional musl-specific checks here
5755
#include <stdio.h>
5856
int main() { return 0; }
5957
" IS_MUSL)

binlog_json_parser/Dockerfile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,9 @@ COPY . .
1414

1515
RUN cmake -S . -B build -G Ninja \
1616
-DCMAKE_BUILD_TYPE=Release \
17-
-DBUILD_SHARED_LIBS=OFF \
1817
-DCMAKE_C_COMPILER=clang \
1918
-DCMAKE_CXX_COMPILER=clang++ \
20-
&& ninja -C build -v
19+
&& ninja -C build -v
2120

2221
FROM scratch AS artifact
2322

0 commit comments

Comments
 (0)