diff options
| author | Mark Johnston <markjdb@gmail.com> | 2021-07-06 17:53:01 -0400 |
|---|---|---|
| committer | Mark Johnston <markjdb@gmail.com> | 2021-07-06 18:23:32 -0400 |
| commit | 4846d5c1dcbf362c2e9949b24feca9670ca9b4b9 (patch) | |
| tree | 1bcda5026968e29e6cbf4d968928c58eee12494c /pkg | |
| parent | cca78469bc01d3ebcfcb8c4b1a72bdd8e812fa16 (diff) | |
pkg/build: disable DEBUG_REDZONE for FreeBSD
Now that KASAN is enabled by default, it doesn't make sense to continue
configuring DEBUG_REDZONE. KASAN will automatically detect
out-of-bounds accesses.
Diffstat (limited to 'pkg')
| -rw-r--r-- | pkg/build/freebsd.go | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/pkg/build/freebsd.go b/pkg/build/freebsd.go index bea4c2f75..d002b8ad0 100644 --- a/pkg/build/freebsd.go +++ b/pkg/build/freebsd.go @@ -35,7 +35,6 @@ options RATELIMIT options DEBUG_VFS_LOCKS options DIAGNOSTIC -options DEBUG_REDZONE `) } if err := osutil.WriteFile(filepath.Join(confDir, confFile), config); err != nil { |
