• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1#!/bin/bash
2
3# This is known to work with clang-3.4 from Debian testing/unstable.
4# 2013/07/14
5
6export CC=clang
7export CXX=clang++
8export CFLAGS="-O3 -fsanitize=address,integer,undefined"
9export CXXFLAGS="-O3 -fsanitize=address,integer,undefined"
10
11./configure --enable-gcc-werror
12
13make clean all check
14