blob: 5e5a1369717048255cfe2f3380b49a4ce548ac5a (
plain)
1
2
3
4
5
6
7
|
# Linking Nectar 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.
|