brintos

brintos / llvm-project-archived public Read only

0
0
Text · 297 B · 9274f33 Raw
16 lines · plain
1#include <stdio.h>2%include_SB_APIs%3 4using namespace lldb;5int6main(int argc, char const *argv[])7{8    SBDebugger::Initialize();9    SBDebugger dbg = SBDebugger::Create();10 11    printf("Hello SBDebugger %llu\n", dbg.GetID()); // Set breakpoint here.12 13    SBDebugger::Terminate();14    return 0;15}16