Ubuntu Pastebin

Paste from mcphail at Wed, 20 May 2015 19:26:56 +0000

Download as text
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
$ LD_LIBRARY_PATH=lib/armhf/ gdb ./ubuntu-touch-sdl-template
GNU gdb (Ubuntu 7.8-0ubuntu1) 7.8
Copyright (C) 2014 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.  Type "show copying"
and "show warranty" for details.
This GDB was configured as "arm-linux-gnueabihf".
Type "show configuration" for configuration details.
For bug reporting instructions, please see:
<http://www.gnu.org/software/gdb/bugs/>.
Find the GDB manual and other documentation resources online at:
<http://www.gnu.org/software/gdb/documentation/>.
For help, type "help".
Type "apropos word" to search for commands related to "word"...
Reading symbols from ./ubuntu-touch-sdl-template...done.
(gdb) set debug-file-directory /home/phablet/usr/lib/debug
(gdb) run
Starting program: /opt/click.ubuntu.com/ubuntu-touch-sdl-template.sturmflut/0.4/ubuntu-touch-sdl-template 
[Thread debugging using libthread_db enabled]
Using host libthread_db library "/lib/arm-linux-gnueabihf/libthread_db.so.1".
Starting...
SDL_Init()

Program received signal SIGSEGV, Segmentation fault.
std::_Rb_tree<std::string, std::pair<std::string const, std::pair<void const*, int> >, std::_Select1st<std::pair<std::string const, std::pair<void const*, int> > >, std::less<std::string>, std::allocator<std::pair<std::string const, std::pair<void const*, int> > > >::_M_get_insert_unique_pos (this=this@entry=0x4, 
    __k=...) at /usr/include/c++/4.8/bits/stl_tree.h:1315
1315	/usr/include/c++/4.8/bits/stl_tree.h: No such file or directory.
(gdb) bt
#0  std::_Rb_tree<std::string, std::pair<std::string const, std::pair<void const*, int> >, std::_Select1st<std::pair<std::string const, std::pair<void const*, int> > >, std::less<std::string>, std::allocator<std::pair<std::string const, std::pair<void const*, int> > > >::_M_get_insert_unique_pos (this=this@entry=0x4, 
    __k=...) at /usr/include/c++/4.8/bits/stl_tree.h:1315
#1  0xb6c345cc in std::_Rb_tree<std::string, std::pair<std::string const, std::pair<void const*, int> >, std::_Select1st<std::pair<std::string const, std::pair<void const*, int> > >, std::less<std::string>, std::allocator<std::pair<std::string const, std::pair<void const*, int> > > >::_M_insert_unique (
    this=this@entry=0x4, __v=...) at /usr/include/c++/4.8/bits/stl_tree.h:1377
#2  0xb6c34e50 in insert (__x=..., this=0x4)
    at /usr/include/c++/4.8/bits/stl_map.h:595
#3  InsertIfNotPresent<std::map<std::basic_string<char>, std::pair<void const*, int>, std::less<std::basic_string<char> >, std::allocator<std::pair<std::basic_string<char> const, std::pair<void const*, int> > > >, std::basic_string<char>, std::pair<void const*, int> > (value=..., key=..., collection=0x4)
    at ./google/protobuf/stubs/map-util.h:136
#4  google::protobuf::SimpleDescriptorDatabase::DescriptorIndex<std::pair<void const*, int> >::AddFile (this=this@entry=0x4, file=..., value=...)
    at google/protobuf/descriptor_database.cc:56
#5  0xb6c32b84 in google::protobuf::EncodedDescriptorDatabase::Add (this=0x0, 
    encoded_file_descriptor=encoded_file_descriptor@entry=0xb6cd6e20, 
    size=size@entry=193) at google/protobuf/descriptor_database.cc:312
---Type <return> to continue, or q <return> to quit---
#6  0xb6c0f5c2 in google::protobuf::DescriptorPool::InternalAddGeneratedFile (
    encoded_file_descriptor=0xb6cd6e20, size=size@entry=193)
    at google/protobuf/descriptor.cc:954
#7  0xb6ca9ea4 in mir::protobuf::wire::protobuf_AddDesc_mir_5fprotobuf_5fwire_2eproto ()
    at /build/buildd/mir-0.8.0+14.10.20141010/obj-arm-linux-gnueabihf/src/common/protobuf/mir_protobuf_wire.pb.cc:114
#8  0xb6fe222e in ?? () from /lib/ld-linux-armhf.so.3
#9  0x00027e40 in ?? ()
Backtrace stopped: previous frame identical to this frame (corrupt stack?)
(gdb) 
Download as text