本文整理汇总了Golang中github.com/axw/llgo.CompilerOptions.Logger方法的典型用法代码示例。如果您正苦于以下问题:Golang CompilerOptions.Logger方法的具体用法?Golang CompilerOptions.Logger怎么用?Golang CompilerOptions.Logger使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/axw/llgo.CompilerOptions
的用法示例。
在下文中一共展示了CompilerOptions.Logger方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: initCompiler
func initCompiler() (llgo.Compiler, error) {
opts := llgo.CompilerOptions{TargetTriple: computeTriple()}
if *trace {
opts.Logger = log.New(os.Stderr, "", 0)
}
return llgo.NewCompiler(opts)
}
示例2: initCompiler
func initCompiler() (llgo.Compiler, error) {
opts := llgo.CompilerOptions{TargetTriple: computeTriple()}
if *trace || os.Getenv("LLGO_TRACE") == "1" {
opts.Logger = log.New(os.Stderr, "", 0)
}
if os.Getenv("LLGO_ORDERED_COMPILATION") == "1" {
opts.OrderedCompilation = true
}
opts.GenerateDebug = *generateDebug
return llgo.NewCompiler(opts)
}
示例3: main
func main() {
llvm.InitializeAllTargets()
llvm.InitializeAllTargetMCs()
llvm.InitializeAllTargetInfos()
flag.Parse()
if *version {
displayVersion()
}
if *printTriple {
fmt.Println(computeTriple())
os.Exit(0)
}
opts := llgo.CompilerOptions{}
opts.TargetTriple = computeTriple()
if *trace {
opts.Logger = log.New(os.Stderr, "", 0)
}
compiler, err := initCompiler()
if err != nil {
fmt.Fprintf(os.Stderr, "initCompiler failed: %s\n", err)
os.Exit(1)
}
defer compiler.Dispose()
module, err := compileFiles(compiler, flag.Args(), *importpath)
if err == nil {
defer module.Dispose()
if exitCode == 0 {
if *dump {
module.Dump()
} else {
err := writeObjectFile(module)
if err != nil {
fmt.Println(err)
}
}
}
} else {
report(err)
}
os.Exit(exitCode)
}