an efficient binary archive format
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

change make check

zach d555371f 1fd7eb52

+2 -2
+2 -2
c/Makefile
··· 1 1 .PHONY: test 2 2 test: check 3 3 python3 test.py a.bindl 4 - 4 + clang -Wall -Wextra -Wpedantic -I ../include -o bindle_c bindle-cli.c bindle.c `pkg-config --cflags --libs libzstd` 5 5 6 6 check: 7 - clang -I ../include -o bindle_c bindle-cli.c bindle.c `pkg-config --cflags --libs libzstd` 7 + clang -fsanitize=address -Wall -Wextra -Wpedantic -I ../include -o bindle_c bindle-cli.c bindle.c `pkg-config --cflags --libs libzstd` 8 8