Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion projects/s2opc/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,16 @@
#
################################################################################

if [ -f /usr/local/bin/clang-21 ]; then
export CFLAGS="${CFLAGS} -Wno-error=unterminated-string-initialization"
fi

MBEDTLS_BUILD=$WORK/mbedtls
EXPAT_BUILD=$WORK/expat
S2OPC_BUILD=$WORK/s2opc
SAMPLES=$SRC/S2OPC-fuzzing-data

# Build the dependencies

## Configure mbedtls to disable support of the AES-NI instructions, known to cause error with some sanitizers
tar xjf $SRC/mbedtls.tbz2 -C $WORK
sed 's,#define MBEDTLS_AESNI_C,//#define MBEDTLS_AESNI_C,' -i $WORK/mbedtls-2.*/include/mbedtls/config.h
Expand Down