diff options
Diffstat (limited to 'plugin/examples')
-rwxr-xr-x | plugin/examples/build | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugin/examples/build b/plugin/examples/build index 8b628a2..5907afa 100755 --- a/plugin/examples/build +++ b/plugin/examples/build @@ -8,7 +8,7 @@ # This directory is where we will look for openvpn-plugin.h INCLUDE="-I../.." -CC_FLAGS="-O2 -Wall" +CC_FLAGS="-O2 -Wall -g" gcc $CC_FLAGS -fPIC -c $INCLUDE $1.c && \ -gcc -fPIC -shared -Wl,-soname,$1.so -o $1.so $1.o -lc +gcc $CC_FLAGS -fPIC -shared -Wl,-soname,$1.so -o $1.so $1.o -lc |