post
poster: toraton
description: Makefile - dlsym example
language: plain text
[download]
1
2
3
4
all:
    gcc -fPIC -c *.c
    gcc -shared -W1,-soname,libadd.so -o libadd.so *.o
    gcc -o add main.o