I downloaded codeclap 0.8.43.
Working with familiar file:
| #include <stdio.h>
int
main(int argc, char* argv[argc + 1])
{
puts("oh my dwarf");
return 0;
}
|
Compiled with dwarf:
| clang.exe --target=x86_64-pc-windows-gnu -fuse-ld=lld.exe -g file.c -o file.exe
|
Don't get source:
Compiled with pdb:
| clang.exe --target=x86_64-pc-windows-gnu -fuse-ld=lld.exe -g -gcodeview -Wl,-pdb,file2.pdb file.c -o file2.exe
|
Do get source:
I have dragged executables into codeclap to start session. Did you do something different?
Also, is it possible to show all the source, i.e. the return statement and closing bracket?
Thanks.