Re: [lldb-dev] ELF header does not hold big modules

2017-02-02 Thread Greg Clayton via lldb-dev
Found this on the web: e_shnum This member holds the number of entries in the section header table. Thus the product of e_shentsize and e_shnum gives the section header table's size in bytes. If a file has no section header table, e_shnum holds the value zero. If the number of

Re: [lldb-dev] Navigating STL types

2017-02-02 Thread Greg Clayton via lldb-dev
You could add an explicit instantiation of your template for C++ types you need. Example without: #include #include int main (int argc, char const *argv[]) { std::vector ints = { 1,2,3,4 }; for (auto i: ints) printf("%i\n", i); return 0; } (lldb) target create "a.out" (lldb) b /a

Re: [lldb-dev] ELF header does not hold big modules

2017-02-02 Thread Eugene Birukov via lldb-dev
Yes, that's what happens to all 3 fields. I already fixed LLDB, Pavel reviewed the change. Sent from Outlook From: Greg Clayton Sent: Thursday, February 2, 2017 2:31 PM To: Eugene Birukov Cc: Pavel Labath; LLDB Subject: Re: [lldb-dev]