diff options
author | David Schleef <ds@schleef.org> | 2001-11-26 11:06:58 +0000 |
---|---|---|
committer | David Schleef <ds@schleef.org> | 2001-11-26 11:06:58 +0000 |
commit | f2ca1a04b984f6b52781ab0f881e79ecd021442b (patch) | |
tree | a3c9c238ac493b1c88de89107a8dd18dae704025 | |
parent | 26f348f4d734a395844d0f4d981693f6afee3af6 (diff) |
libhowdy.so needs to be compiled with -fPIC
-rw-r--r-- | test/ldso/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ldso/Makefile b/test/ldso/Makefile index ac33e8e27..06350ab91 100644 --- a/test/ldso/Makefile +++ b/test/ldso/Makefile @@ -7,7 +7,7 @@ dltest.o: dltest.c $(CC) $(CFLAGS) -c dltest.c -o dltest.o howdy.o: howdy.c - $(CC) $(CFLAGS) -c howdy.c -o howdy.o + $(CC) $(CFLAGS) -fPIC -c howdy.c -o howdy.o libhowdy.so: howdy.o $(CC) $(CFLAGS) -shared -o libhowdy.so -Wl,-soname,libhowdy.so howdy.o |