diff options
| author | Aleksandr Nogikh <wp32pw@gmail.com> | 2025-08-05 22:07:18 +0200 |
|---|---|---|
| committer | Aleksandr Nogikh <wp32pw@gmail.com> | 2025-08-05 20:34:33 +0000 |
| commit | 1ca81baa88d4716fd2f73ccc32b34d0be62f9c28 (patch) | |
| tree | 6dbf2c7190bbaa070843a8a5d90768dedbfbbd6a | |
| parent | 9e53e3a878f64a974f33589b6f3f1e84c38313c5 (diff) | |
Revert "sys/targets: enable ASAN for TestArch64Fuzz"
This reverts commit 0931f9bfa8eacf9840a2bd3f9def3cfb4349431e.
| -rw-r--r-- | sys/targets/targets.go | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/sys/targets/targets.go b/sys/targets/targets.go index a076d2710..67ae9bba4 100644 --- a/sys/targets/targets.go +++ b/sys/targets/targets.go @@ -209,10 +209,8 @@ var List = map[string]map[string]*Target{ TestArch64Fuzz: { PtrSize: 8, PageSize: 8 << 10, - CFlags: []string{ - "-fsanitize=address", - "-no-pie", - }, + // -fsanitize=address causes SIGSEGV. + CFlags: []string{"-no-pie"}, osCommon: osCommon{ SyscallNumbers: true, SyscallPrefix: "SYS_", |
