Skip to content

Stop building memory-analyzer on Mac and Windows #7923

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,6 @@ add_subdirectory(symtab2gb)
add_subdirectory(libcprover-cpp)
add_subdirectory(goto-bmc)

if(UNIX OR WITH_MEMORY_ANALYZER)
if((NOT WIN32 AND NOT APPLE) OR WITH_MEMORY_ANALYZER)
add_subdirectory(memory-analyzer)
endif()
4 changes: 2 additions & 2 deletions src/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,9 @@ else
detected_OS := $(shell sh -c 'uname 2>/dev/null || echo Unknown')
endif

ifeq ($(detected_OS),Linux)
ifeq ($(WITH_MEMORY_ANALYZER),1)
all: memory-analyzer.dir
else ifeq ($(WITH_MEMORY_ANALYZER),1)
else ifneq ($(filter-out Windows Darwin,$(detected_OS)),)
all: memory-analyzer.dir
endif

Expand Down