I'm on Ubuntu 18.04, codeclap 9.0.1.
I'm trying to view the glibc sources inside of codeclap.
I compile a simple hello world program like so:
| clang -g -fuse-ld=lld test.c -o test
|
Following the advice from this
stackoverflow postI have performed:
| sudo apt install libc6-dbg glibc-source; tar xvf /usr/src/glibc2.6.tar.xz
|
As there is no '.gdbinit' to tell codeclap about this, I still see assembly inside of codeclap. Is there some way to overcome this?
Thanks.