Displaying 4 results from an estimated 4 matches for "1384b".
Did you mean:
1384
2017 Mar 15
2
[LLD] Linking static library does not resolve symbols as gold/ld
...48 83 ec 18 sub $0x18,%rsp
> 1383b: 48 89 7d e8 mov %rdi,-0x18(%rbp)
> 1383f: 48 8b 45 e8 mov -0x18(%rbp),%rax
> 13843: 48 89 c7 mov %rax,%rdi
> -> 13846: e8 00 00 00 00 callq 1384b <func+0x19>
> 1384b: 48 8b 45 e8 mov -0x18(%rbp),%rax
>
> gdb displays this as a jump to the next instruction:
>
> 0x0000000000013832 <+0>: push %rbp
> 0x0000000000013833 <+1>: mov %rsp,%rbp
> 0x0000000000013836 &l...
2017 Mar 15
2
[LLD] Linking static library does not resolve symbols as gold/ld
...48 83 ec 18 sub $0x18,%rsp
> 1383b: 48 89 7d e8 mov %rdi,-0x18(%rbp)
> 1383f: 48 8b 45 e8 mov -0x18(%rbp),%rax
> 13843: 48 89 c7 mov %rax,%rdi
> 13846: e8 00 00 00 00 callq 1384b <func()+0x19>
> 13847: R_X86_64_PLT32 std::vector<record,
> std::allocator<record> >::vector()-0x4
> ....
>
This seems a bit odd. You have type `record` and instantiate std::vector
with `record`. Usually the instantiated template function...
2017 Mar 23
2
[LLD] Linking static library does not resolve symbols as gold/ld
...$0x18,%rsp
> >> 1383b: 48 89 7d e8 mov %rdi,-0x18(%rbp)
> >> 1383f: 48 8b 45 e8 mov -0x18(%rbp),%rax
> >> 13843: 48 89 c7 mov %rax,%rdi
> >> 13846: e8 00 00 00 00 callq 1384b <func()+0x19>
> >> 13847: R_X86_64_PLT32 std::vector<record,
> >> std::allocator<record> >::vector()-0x4
> >> ....
> >>
> >
> > This seems a bit odd. You have type `record` and instantiate std::vector
>...
2017 Apr 25
1
[LLD] Linking static library does not resolve symbols as gold/ld
...1383b: 48 89 7d e8 mov %rdi,-0x18(%rbp)
> >> >> 1383f: 48 8b 45 e8 mov -0x18(%rbp),%rax
> >> >> 13843: 48 89 c7 mov %rax,%rdi
> >> >> 13846: e8 00 00 00 00 callq 1384b <func()+0x19>
> >> >> 13847: R_X86_64_PLT32 std::vector<record,
> >> >> std::allocator<record> >::vector()-0x4
> >> >> ....
> >> >>
> >> >
> >> > This seems a bit odd....