github.com/google/syzkaller@v0.0.0-20240517125934-c0f1611a36d6/pkg/build/darwin.go (about) 1 // Copyright 2021 syzkaller project authors. All rights reserved. 2 // Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file. 3 4 package build 5 6 import ( 7 "fmt" 8 ) 9 10 type darwin struct{} 11 12 func (ctx darwin) build(params Params) (ImageDetails, error) { 13 // TODO(HerrSpace): Implement this. 14 return ImageDetails{}, fmt.Errorf("pkg/build: darwin.build not implemented") 15 } 16 17 func (ctx darwin) clean(kernelDir, targetArch string) error { 18 // TODO(HerrSpace): Implement this. 19 return fmt.Errorf("pkg/build: darwin.build not implemented") 20 }