blob: 9c97e4db5566b1ad31b6cb7d75a2ef5c64426dfc (
plain)
1
2
3
4
5
6
7
|
# Linking on Linux:
You will need:
`ld -m elf_x86_64 -dynamic-linker /lib64/ld-linux-x86-64.so.2 -lc inner.o -o a.out`
As The Linux Kernel will **not** let you load dynamic libraries without a loader.
|