github.com/zhuohuang-hust/src-cbuild@v0.0.0-20230105071821-c7aab3e7c840/pkg/system/errors.go (about) 1 package system 2 3 import ( 4 "errors" 5 ) 6 7 var ( 8 // ErrNotSupportedPlatform means the platform is not supported. 9 ErrNotSupportedPlatform = errors.New("platform and architecture is not supported") 10 )