diff --git a/magefiles/magefile.go b/magefiles/magefile.go index b0ae67427bf3e..23d9588568cd4 100644 --- a/magefiles/magefile.go +++ b/magefiles/magefile.go @@ -182,7 +182,11 @@ func Build() error { return err } - buildTags := []string{"custommalloc", "no_fs_access"} + buildTags := []string{ + "custommalloc", // https://github.com/wasilibs/nottinygc#usage + "no_fs_access", // https://github.com/corazawaf/coraza#build-tags + "memoize_builders", // https://github.com/corazawaf/coraza#build-tags + } // By default multiphase evaluation is enabled if os.Getenv("MULTIPHASE_EVAL") != "false" { buildTags = append(buildTags, "coraza.rule.multiphase_evaluation")