Skip to content

Commit 7e1aa44

Browse files
committed
fix: add msgpack dependency to fuzzer build
1 parent 40a6bab commit 7e1aa44

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

.clusterfuzzlite/Dockerfile

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,18 @@ RUN apt-get update && \
99
&& apt-get clean \
1010
&& rm -rf /var/lib/apt/lists/*
1111

12+
# Static builds of dependencies
1213

14+
# libsodium
1315
RUN git clone --depth 1 --branch 1.0.18 https://github.com/jedisct1/libsodium libsodium
1416
WORKDIR $SRC/libsodium
1517
RUN ./autogen.sh && ./configure --enable-shared=no && make install
18+
WORKDIR $SRC
19+
20+
# msgpack-c
21+
RUN git clone --depth 1 --branch c_master https://github.com/msgpack/msgpack-c.git msgpack
22+
WORKDIR $SRC/msgpack
23+
RUN cmake -DBUILD_SHARED_LIBS=OFF . && make && make install
1624

1725
# Copy your project's source code.
1826
COPY . $SRC/c-toxcore

0 commit comments

Comments
 (0)