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