Disable JITDebugRegisterer, and fix unit_tests rule.

0.96
Török Edvin 16 years ago
parent 778df8c22f
commit 11cee1b7de
  1. 4
      libclamav/c++/bytecode2llvm.cpp
  2. 2
      unit_tests/Makefile.am
  3. 2
      unit_tests/Makefile.in

@ -1778,7 +1778,9 @@ int bytecode_init(void)
atexit(do_shutdown);
#ifdef CL_DEBUG
llvm::JITEmitDebugInfo = true;
//disable this for now, it leaks
llvm::JITEmitDebugInfo = false;
// llvm::JITEmitDebugInfo = true;
#else
llvm::JITEmitDebugInfo = false;
#endif

@ -1,7 +1,7 @@
SPLIT_DIR=$(top_srcdir)/unit_tests/.split
FILES = clam-phish-exe
check_unit_vg.sh: $(FILES) check_clamav
check_unit_vg.sh: $(FILES)
check2_clamd.sh: $(FILES)
check3_clamd.sh: $(FILES)
check4_clamd.sh: $(FILES)

@ -1072,7 +1072,7 @@ uninstall-am:
recheck recheck-html tags uninstall uninstall-am
check_unit_vg.sh: $(FILES) check_clamav
check_unit_vg.sh: $(FILES)
check2_clamd.sh: $(FILES)
check3_clamd.sh: $(FILES)
check4_clamd.sh: $(FILES)

Loading…
Cancel
Save