summaryrefslogtreecommitdiff
path: root/other/wrez/lookup-example/shared-library-build.sh
blob: e9832db0a406c41e137eec482c1ce1baf4ac7a3c (plain)
1
2
3
4
5
6
#!/bin/sh

gcc -Wall -fPIC -g -ggdb -c -o shared-library.o shared-library.c
ld -Bshareable -o libshared-library.so shared-library.o
gcc -L`pwd` -o shared-library-use shared-library-use.c -lshared-library