diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2024-06-02 11:58:29 +0200 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2024-06-04 09:50:32 +0000 |
| commit | 06bf8101debe879447d0ef3a7a5b84cb11fa5acf (patch) | |
| tree | d36506158005ab053b33b46559d48ba5e54b4a9e /Makefile | |
| parent | 3f1713c975c911f9ca5d27d0292f7505b176c873 (diff) | |
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.
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 8 |
1 files changed, 2 insertions, 6 deletions
@@ -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 |
