legs/scripts/setup_debug.sh

16 lines
247 B
Bash
Raw Normal View History

2024-09-17 19:14:58 +03:00
#!/bin/bash
set -euo pipefail
# TODO: gcc busted
export CXX=clang++
# TODO: ubsan doesn't link with jolt
meson setup --reconfigure \
-D examples=true \
-D buildtype=debug \
-D b_sanitize=address \
-D b_lundef=false \
build