[go: up one dir, main page]

Menu

[f5af0a]: / __build_ubsan.sh  Maximize  Restore  History

Download this file

15 lines (12 with data), 241 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
#!/bin/sh
builddir=__build_ubsan
rm -rf $builddir
mkdir $builddir
cd $builddir
../configure \
--enable-debug \
--enable-libs \
CXXFLAGS="-fsanitize=undefined" \
LDFLAGS="-fsanitize=undefined" \
&& make -j$(nproc)
cd ..