Giter Club home page Giter Club logo

Comments (4)

bombela avatar bombela commented on July 19, 2024

from backward-cpp.

jbongseo avatar jbongseo commented on July 19, 2024

without the necessary libraries it won't be able to read the debug symbols.

That may be the source of the problem.

libdwarf and libelf is compiled and linked statically as specified by conan receipt and we can see that in the build log.

/usr/bin/c++ -g CMakeFiles/backward_sample.dir/backward_sample.cpp.o -o backward_sample  
[BLAH_PATH]/libbackward.a
 -ldl -lm
[BLAH_PATH]/libdwarf.a    <--- linked statically
[BLAH_PATH]/libz.a
[BLAH_PATH]/libelf.a      <--- linked statically

And we can check that using ldd command.

$ ldd build/backward_sample
        linux-vdso.so.1 (0x00007ffe2c943000)
        libstdc++.so.6 => /lib/x86_64-linux-gnu/libstdc++.so.6 (0x00007f46f6dd0000)
        libgcc_s.so.1 => /lib/x86_64-linux-gnu/libgcc_s.so.1 (0x00007f46f6db0000)
        libc.so.6 => /lib/x86_64-linux-gnu/libc.so.6 (0x00007f46f6b88000)
        libm.so.6 => /lib/x86_64-linux-gnu/libm.so.6 (0x00007f46f6aa1000)
        /lib64/ld-linux-x86-64.so.2 (0x00007f46f70a3000)

By the way, I tried installing those library globally and linked them forcefully.
Then it worked as expected.

sudo apt-get install libdwarf-dev libelf-dev
# CMakeLists.txt
# add  -ldwarf -lelf flag to forcefully link global library
target_link_libraries(backward_sample PRIVATE Backward::Backward -ldwarf -lelf)
$ cmake --build build --clean-first --verbose
...
[100%] Linking CXX executable backward_sample
/usr/bin/cmake -E cmake_link_script CMakeFiles/backward_sample.dir/link.txt --verbose=1
/usr/bin/c++ -g CMakeFiles/backward_sample.dir/backward_sample.cpp.o -o backward_sample

-ldwarf -lelf     <-- forcefully injected link

[BLAH_PATH]/libbackward.a
 -ldl -lm

[BLAH_PATH]/libdwarf.a  <-- provided by cmake. maybe ignored?
[BLAH_PATH]/libz.a 
[BLAH_PATH]/libelf.a  <-- provided by cmake. maybe ignored?

Now, libdwarf, libelf, libz are linked dynamically.

$ ldd ./build/backward_sample
        linux-vdso.so.1 (0x00007ffde4d86000)
        libdwarf.so.1 => /lib/x86_64-linux-gnu/libdwarf.so.1 (0x00007f7ffa159000)
        libelf.so.1 => /lib/x86_64-linux-gnu/libelf.so.1 (0x00007f7ffa13b000)
        libstdc++.so.6 => /lib/x86_64-linux-gnu/libstdc++.so.6 (0x00007f7ff9f11000)
        libgcc_s.so.1 => /lib/x86_64-linux-gnu/libgcc_s.so.1 (0x00007f7ff9ef1000)
        libc.so.6 => /lib/x86_64-linux-gnu/libc.so.6 (0x00007f7ff9cc9000)
        libz.so.1 => /lib/x86_64-linux-gnu/libz.so.1 (0x00007f7ff9cab000)
        /lib64/ld-linux-x86-64.so.2 (0x00007f7ffa23a000)
        libm.so.6 => /lib/x86_64-linux-gnu/libm.so.6 (0x00007f7ff9bc4000)

and it works well now.

$ ./build/backward_sample
Stack trace (most recent call last):
#5    Object "", at 0xffffffffffffffff, in
#4    Object "/home/jbseo/playground/backward_cpp/build/backward_sample", at 0x55a592030a84, in _start
#3    Object "/lib/x86_64-linux-gnu/libc.so.6", at 0x7f76f1442e3f, in __libc_start_main
#2    Object "/lib/x86_64-linux-gnu/libc.so.6", at 0x7f76f1442d8f, in __libc_init_first
#1    Source "/home/jbseo/playground/backward_cpp/backward_sample.cpp", line 15, in int main(int argc, char **argv) [0x55a592030b7d]
         12: }
         13:
         14: int main(int argc, char* argv[]) {
      >  15:   crash();
         16:   return 0;
         17: }
#0    Source "/home/jbseo/playground/backward_cpp/backward_sample.cpp", line 11, in crash() [0x55a592030b5d]
          9: void crash() {
         10:   volatile int* a = (int*)(NULL);
      >  11:   *a = 1;
         12: }
         13:
         14: int main(int argc, char* argv[]) {
Segmentation fault (Address not mapped to object [(nil)])
Segmentation fault

I do not know the reason.
Maybe libdwarf should not be linked statically or libdwarf conan package has some problem in it.
Anyway, conan package should not be encouraged currently.

Thanks for the great library!

from backward-cpp.

bombela avatar bombela commented on July 19, 2024

from backward-cpp.

yz1019117968 avatar yz1019117968 commented on July 19, 2024

without the necessary libraries it won't be able to read the debug symbols.

That may be the source of the problem.

libdwarf and libelf is compiled and linked statically as specified by conan receipt and we can see that in the build log.

/usr/bin/c++ -g CMakeFiles/backward_sample.dir/backward_sample.cpp.o -o backward_sample  
[BLAH_PATH]/libbackward.a
 -ldl -lm
[BLAH_PATH]/libdwarf.a    <--- linked statically
[BLAH_PATH]/libz.a
[BLAH_PATH]/libelf.a      <--- linked statically

And we can check that using ldd command.

$ ldd build/backward_sample
        linux-vdso.so.1 (0x00007ffe2c943000)
        libstdc++.so.6 => /lib/x86_64-linux-gnu/libstdc++.so.6 (0x00007f46f6dd0000)
        libgcc_s.so.1 => /lib/x86_64-linux-gnu/libgcc_s.so.1 (0x00007f46f6db0000)
        libc.so.6 => /lib/x86_64-linux-gnu/libc.so.6 (0x00007f46f6b88000)
        libm.so.6 => /lib/x86_64-linux-gnu/libm.so.6 (0x00007f46f6aa1000)
        /lib64/ld-linux-x86-64.so.2 (0x00007f46f70a3000)

By the way, I tried installing those library globally and linked them forcefully. Then it worked as expected.

sudo apt-get install libdwarf-dev libelf-dev
# CMakeLists.txt
# add  -ldwarf -lelf flag to forcefully link global library
target_link_libraries(backward_sample PRIVATE Backward::Backward -ldwarf -lelf)
$ cmake --build build --clean-first --verbose
...
[100%] Linking CXX executable backward_sample
/usr/bin/cmake -E cmake_link_script CMakeFiles/backward_sample.dir/link.txt --verbose=1
/usr/bin/c++ -g CMakeFiles/backward_sample.dir/backward_sample.cpp.o -o backward_sample

-ldwarf -lelf     <-- forcefully injected link

[BLAH_PATH]/libbackward.a
 -ldl -lm

[BLAH_PATH]/libdwarf.a  <-- provided by cmake. maybe ignored?
[BLAH_PATH]/libz.a 
[BLAH_PATH]/libelf.a  <-- provided by cmake. maybe ignored?

Now, libdwarf, libelf, libz are linked dynamically.

$ ldd ./build/backward_sample
        linux-vdso.so.1 (0x00007ffde4d86000)
        libdwarf.so.1 => /lib/x86_64-linux-gnu/libdwarf.so.1 (0x00007f7ffa159000)
        libelf.so.1 => /lib/x86_64-linux-gnu/libelf.so.1 (0x00007f7ffa13b000)
        libstdc++.so.6 => /lib/x86_64-linux-gnu/libstdc++.so.6 (0x00007f7ff9f11000)
        libgcc_s.so.1 => /lib/x86_64-linux-gnu/libgcc_s.so.1 (0x00007f7ff9ef1000)
        libc.so.6 => /lib/x86_64-linux-gnu/libc.so.6 (0x00007f7ff9cc9000)
        libz.so.1 => /lib/x86_64-linux-gnu/libz.so.1 (0x00007f7ff9cab000)
        /lib64/ld-linux-x86-64.so.2 (0x00007f7ffa23a000)
        libm.so.6 => /lib/x86_64-linux-gnu/libm.so.6 (0x00007f7ff9bc4000)

and it works well now.

$ ./build/backward_sample
Stack trace (most recent call last):
#5    Object "", at 0xffffffffffffffff, in
#4    Object "/home/jbseo/playground/backward_cpp/build/backward_sample", at 0x55a592030a84, in _start
#3    Object "/lib/x86_64-linux-gnu/libc.so.6", at 0x7f76f1442e3f, in __libc_start_main
#2    Object "/lib/x86_64-linux-gnu/libc.so.6", at 0x7f76f1442d8f, in __libc_init_first
#1    Source "/home/jbseo/playground/backward_cpp/backward_sample.cpp", line 15, in int main(int argc, char **argv) [0x55a592030b7d]
         12: }
         13:
         14: int main(int argc, char* argv[]) {
      >  15:   crash();
         16:   return 0;
         17: }
#0    Source "/home/jbseo/playground/backward_cpp/backward_sample.cpp", line 11, in crash() [0x55a592030b5d]
          9: void crash() {
         10:   volatile int* a = (int*)(NULL);
      >  11:   *a = 1;
         12: }
         13:
         14: int main(int argc, char* argv[]) {
Segmentation fault (Address not mapped to object [(nil)])
Segmentation fault

I do not know the reason. Maybe libdwarf should not be linked statically or libdwarf conan package has some problem in it. Anyway, conan package should not be encouraged currently.

Thanks for the great library!

Hi, can you elaborate more about the steps?? I'm not familiar with cpp....

from backward-cpp.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.