github.com/metux/go-metabuild@v0.0.0-20240118143255-d9ed5ab697f9/util/compiler/base/ccompiler.go (about)

     1  package base
     2  
     3  type CCompiler interface {
     4  	CompileExecutable(CompilerArg) error
     5  	CompileLibraryStatic(CompilerArg) error
     6  	CompileLibraryShared(CompilerArg) error
     7  	BinaryInfo(string) BinaryFileInfo
     8  }