Browse Source
This didn't actually suppress everything, which makes me think either I'm doing something wrong or Glib is leaking.master
2 changed files with 1121 additions and 0 deletions
@ -0,0 +1,21 @@ |
|||
#+/bin/sh |
|||
|
|||
CAKELISP_DIR=Dependencies/cakelisp |
|||
|
|||
# Build Cakelisp itself |
|||
echo "\n\nCakelisp\n\n" |
|||
cd $CAKELISP_DIR |
|||
./Build.sh || exit $? |
|||
|
|||
cd ../.. |
|||
|
|||
echo "\n\nAuto Color\n\n" |
|||
|
|||
CAKELISP=./Dependencies/cakelisp/bin/cakelisp |
|||
|
|||
$CAKELISP --verbose-processes \ |
|||
src/Config_Linux.cake \ |
|||
src/AutoColorCLI.cake || exit $? |
|||
|
|||
valgrind --leak-check=full --suppressions=glib.supp \ |
|||
./auto-color |
File diff suppressed because it is too large
Loading…
Reference in new issue