//     const defaultGOARM = <goarm>
 //     const defaultGOOS = <goos>
 //     const defaultGOARCH = <goarch>
+//     const defaultGO_EXTLINK_ENABLED = <goextlinkenabled>
 //     const version = <version>
 //     const goexperiment = <goexperiment>
 //
                        "const defaultGOARM = `%s`\n"+
                        "const defaultGOOS = `%s`\n"+
                        "const defaultGOARCH = `%s`\n"+
+                       "const defaultGO_EXTLINK_ENABLED = `%s`\n"+
                        "const version = `%s`\n"+
                        "const goexperiment = `%s`\n",
-               goroot_final, go386, goarm, gohostos, gohostarch, findgoversion(), os.Getenv("GOEXPERIMENT"))
+               goroot_final, go386, goarm, gohostos, gohostarch, goextlinkenabled, findgoversion(), os.Getenv("GOEXPERIMENT"))
 
        writefile(out, file, 0)
 }
 
        return envOr("GO386", defaultGO386)
 }
 
+func Getgoextlinkenabled() string {
+       return envOr("GO_EXTLINK_ENABLED", defaultGO_EXTLINK_ENABLED)
+}
+
 func Getgoversion() string {
        return version
 }