From 06bf8101debe879447d0ef3a7a5b84cb11fa5acf Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Sun, 2 Jun 2024 11:58:29 +0200 Subject: executor: remove noshmem mode All OSes we have now support shmem. Support for Fuchia/Starnix/Windows wasn't implemented, but generally they support shared memory. Remove all of the complexity and code associated with noshmem mode. If/when we revive these OSes, it's easier to properly implement shmem mode for them. --- Makefile | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index c0f45ebdb..a778d9f65 100644 --- a/Makefile +++ b/Makefile @@ -363,12 +363,8 @@ presubmit_arch_executor: descriptions TARGETOS=fuchsia TARGETARCH=arm64 TARGETVMARCH=arm64 $(MAKE) executor TARGETOS=test TARGETARCH=64 TARGETVMARCH=64 $(MAKE) executor TARGETOS=test TARGETARCH=64_fork TARGETVMARCH=64_fork $(MAKE) executor - TARGETOS=test TARGETARCH=32_shmem TARGETVMARCH=32_shmem $(MAKE) executor - TARGETOS=test TARGETARCH=32_fork_shmem TARGETVMARCH=32_fork_shmem $(MAKE) executor - TARGETOS=test TARGETARCH=64 TARGETVMARCH=64 $(MAKE) executor - TARGETOS=test TARGETARCH=64_fork TARGETVMARCH=64_fork $(MAKE) executor - TARGETOS=test TARGETARCH=32_shmem TARGETVMARCH=32_shmem $(MAKE) executor - TARGETOS=test TARGETARCH=32_fork_shmem TARGETVMARCH=32_fork_shmem $(MAKE) executor + TARGETOS=test TARGETARCH=32 TARGETVMARCH=32 $(MAKE) executor + TARGETOS=test TARGETARCH=32_fork TARGETVMARCH=32_fork $(MAKE) executor presubmit_dashboard: descriptions SYZ_CLANG=yes $(GO) test -short -vet=off -coverprofile=.coverage.txt ./dashboard/app -- cgit mrf-deployment