6 lines
111 B
Bash
6 lines
111 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
gcc -o libshared.so shared.c -fPIC -shared
|
||
|
gcc -o test test.c -L. -lshared
|
||
|
LD_LIBRARY_PATH=. ./test
|