blob: f1e1388e0db6436767db7e3dc25cbe6019350f13 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
CC=g++
CFLAGS=-g3 -fno-rtti -fno-exceptions -fno-unwind-tables
make:
g++ -c test1.c
gcc $(CFLAGS) test1.o ../arg.o -o test1
leak:
valgrind --leak-check=full --track-origins=yes --log-file=log.txt ./test1 -d "ads|asd|asd"
|