mirror of
https://github.com/golang/go.git
synced 2026-02-07 02:09:55 +00:00
internal/buildcfg: enable randomizedHeapBase64 by default
Change-Id: If2493546cd9c4e5bb6736fe3c029e60957716f6a Reviewed-on: https://go-review.googlesource.com/c/go/+/690296 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Michael Knyszek <mknyszek@google.com>
This commit is contained in:
parent
796ea3bc2e
commit
72ba117bda
1 changed files with 4 additions and 3 deletions
|
|
@ -79,9 +79,10 @@ func ParseGOEXPERIMENT(goos, goarch, goexp string) (*ExperimentFlags, error) {
|
|||
dwarf5Supported := (goos != "darwin" && goos != "ios" && goos != "aix")
|
||||
|
||||
baseline := goexperiment.Flags{
|
||||
RegabiWrappers: regabiSupported,
|
||||
RegabiArgs: regabiSupported,
|
||||
Dwarf5: dwarf5Supported,
|
||||
RegabiWrappers: regabiSupported,
|
||||
RegabiArgs: regabiSupported,
|
||||
Dwarf5: dwarf5Supported,
|
||||
RandomizedHeapBase64: true,
|
||||
}
|
||||
|
||||
// Start with the statically enabled set of experiments.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue