This repository has been archived on 2024-06-18. You can view files and clone it, but cannot push or open issues/pull-requests.
|
LDPATH ?= /tmp/libipc/zig-impl/build
|
|
SRC ?= ./bin/some-crystal-app
|
|
|
|
VG_OPTS = --leak-check=full -v
|
|
VG_OPTS += --suppressions=valgrind.suppressions
|
|
VG_OPTS += --gen-suppressions=all
|
|
|
|
valgrind:
|
|
LD_LIBRARY_PATH=$(LDPATH) valgrind $(VG_OPTS) $(SRC)
|