(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
contracts/
backtrace_handler/
Makefile
CXXFLAGS=--std=c++17 -g

default: assert_fail libhandle_contract_violation.so

run: default
	LD_PRELOAD=./libhandle_contract_violation.so ./assert_fail

./libhandle_contract_violation.so: ./handle_contract_violation.cpp
	${CXX} ${CXXFLAGS} -shared -fPIC -o $@ $<

clean:
	rm -fr ./libhandle_contract_violation.so ./assert_fail