From 801cda195a46f047586e1c4ca3f07e995d083e38 Mon Sep 17 00:00:00 2001 From: Rene Windegger Date: Wed, 1 Aug 2018 13:29:47 +0200 Subject: [PATCH 1/2] Undefined DEBUG for DataDirectoryIndex. --- llvm/include/llvm/Support/COFF.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/llvm/include/llvm/Support/COFF.h b/llvm/include/llvm/Support/COFF.h index 1d5ef09b..b1871783 100644 --- a/llvm/include/llvm/Support/COFF.h +++ b/llvm/include/llvm/Support/COFF.h @@ -530,7 +530,13 @@ namespace COFF { EXCEPTION_TABLE, CERTIFICATE_TABLE, BASE_RELOCATION_TABLE, +#ifdef DEBUG +#undef DEBUG DEBUG, +#define DEBUG +#else + DEBUG, +#endif ARCHITECTURE, GLOBAL_PTR, TLS_TABLE, From b0ed0e5abb0f48b71fb589c700a63def19ec5b57 Mon Sep 17 00:00:00 2001 From: Rene Windegger Date: Wed, 26 Dec 2018 20:09:03 +0100 Subject: [PATCH 2/2] Disabled fuzz. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index eb52c199..bf333d8b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -115,4 +115,4 @@ configure_file( add_custom_target(uninstall COMMAND ${CMAKE_COMMAND} -P ${CMAKE_CURRENT_BINARY_DIR}/CMakeUninstall.cmake) -add_subdirectory(suite/fuzz) \ No newline at end of file +#add_subdirectory(suite/fuzz)