generate debug with dwarf language C
This commit is contained in:
@@ -55,9 +55,13 @@ type aCompilationUnit struct {
|
|||||||
|
|
||||||
type CompilationUnit = *aCompilationUnit
|
type CompilationUnit = *aCompilationUnit
|
||||||
|
|
||||||
|
var DWARF_LANG_C llvm.DwarfLang = 0x2
|
||||||
|
var DWARF_LANG_GO llvm.DwarfLang = 0x16
|
||||||
|
|
||||||
func (b diBuilder) createCompileUnit(filename, dir string) CompilationUnit {
|
func (b diBuilder) createCompileUnit(filename, dir string) CompilationUnit {
|
||||||
return &aCompilationUnit{ll: b.di.CreateCompileUnit(llvm.DICompileUnit{
|
return &aCompilationUnit{ll: b.di.CreateCompileUnit(llvm.DICompileUnit{
|
||||||
Language: llvm.DW_LANG_Go - 1, // strange, but it works
|
// TODO(lijie): use C language for now, change after Go plugin of LLDB is ready
|
||||||
|
Language: DWARF_LANG_C - 1,
|
||||||
File: filename,
|
File: filename,
|
||||||
Dir: dir,
|
Dir: dir,
|
||||||
Producer: "LLGo",
|
Producer: "LLGo",
|
||||||
|
|||||||
Reference in New Issue
Block a user