summaryrefslogtreecommitdiff
path: root/src/run.sh
blob: 729b991b49f86e84194ae80178f7c336195a3078 (plain)
1
2
3
4
5
6
7
8
rm *.o *.so *.lib test

gcc -fPIC -c add.c
gcc -shared -o libadd.so add.o
gcc -L$(pwd) -Wl,-rpath=$(pwd) -o test main.c -ladd -g

cp add.h ../thirdparty/linux/include/
cp libadd.so ../thirdparty/linux/lib/x64/