-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstudy.sh
More file actions
executable file
·20 lines (17 loc) · 1.01 KB
/
study.sh
File metadata and controls
executable file
·20 lines (17 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/bash
# The study material I need, while writing the ELF & DWARF related stuff
echo "Pages to open:"
echo "Introduction to the DWARF debugging format (version 4.0 and down)"
echo "DWARF 5.0 standards document"
echo "IBM documentation; Exploring the DWARF debug format information. Sort of niche, but can provide insights in some cases for our purposes"
echo "'Poster' of ELF; a 101 on the ELF format for Linux"
echo "ELF Format (Tool Interface Standards document)"
echo "DWARF Wikipedia"
echo "Linux ABI Draft; System V Application Binary Interface - Linux Extensions version 0.1, Nov 28 / 2018"
firefox https://dwarfstd.org/doc/Debugging%20using%20DWARF-2012.pdf \
https://dwarfstd.org/doc/DWARF5.pdf \
https://developer.ibm.com/articles/au-dwarf-debug-format/ \
https://raw.githubusercontent.com/corkami/pics/master/binary/elf101/elf101-64.pdf \
http://www.skyfree.org/linux/references/ELF_Format.pdf \
https://en.wikipedia.org/wiki/DWARF \
https://raw.githubusercontent.com/wiki/hjl-tools/linux-abi/linux-abi-draft.pdf &