Full Mattermost server source with integrated Community Enterprise features. Includes vendor directory for offline/air-gapped builds. Structure: - enterprise-impl/: Enterprise feature implementations - enterprise-community/: Init files that register implementations - enterprise/: Bridge imports (community_imports.go) - vendor/: All dependencies for offline builds Build (online): go build ./cmd/mattermost Build (offline/air-gapped): go build -mod=vendor ./cmd/mattermost 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
18 lines
585 B
Go
18 lines
585 B
Go
// Copyright (c) 2015 Klaus Post, released under MIT License. See LICENSE file.
|
|
|
|
//go:build (!amd64 && !386 && !arm64) || gccgo || noasm || appengine
|
|
// +build !amd64,!386,!arm64 gccgo noasm appengine
|
|
|
|
package cpuid
|
|
|
|
func initCPU() {
|
|
cpuid = func(uint32) (a, b, c, d uint32) { return 0, 0, 0, 0 }
|
|
cpuidex = func(x, y uint32) (a, b, c, d uint32) { return 0, 0, 0, 0 }
|
|
xgetbv = func(uint32) (a, b uint32) { return 0, 0 }
|
|
rdtscpAsm = func() (a, b, c, d uint32) { return 0, 0, 0, 0 }
|
|
|
|
}
|
|
|
|
func addInfo(info *CPUInfo, safe bool) {}
|
|
func getVectorLength() (vl, pl uint64) { return 0, 0 }
|