Codebase list knights / 841d6fbf-e1ff-42f2-a25e-2ced42c6b0dc/main compile_clang
841d6fbf-e1ff-42f2-a25e-2ced42c6b0dc/main

Tree @841d6fbf-e1ff-42f2-a25e-2ced42c6b0dc/main (Download .tar.gz)

compile_clang @841d6fbf-e1ff-42f2-a25e-2ced42c6b0dc/mainraw · history · blame

#!/bin/bash

if ! [ -d build_clang ]; then
	mkdir build_clang
fi

cd build_clang

export CC=/usr/bin/clang
export CXX=/usr/bin/clang++

cmake .. -DCMAKE_BUILD_TYPE=DebugFull -DCMAKE_CXX_FLAGS="-D_GNU_SOURCE -Wall -Wextra -Wundef -Wpointer-arith -Wcast-align -Wunreachable-code -fno-omit-frame-pointer -fstack-protector -fno-exceptions -fsanitize=address -fPIE" -DCMAKE_INSTALL_PREFIX=/usr && make -j 2