webmcp
diff libraries/extos/Makefile @ 541:72e55c2eb63c
Use "cc -shared" instead of "ld -shared" to create *.so files
author | jbe |
---|---|
date | Sat Oct 19 15:05:55 2019 +0200 (2019-10-19) |
parents | 9fdfb27f8e67 |
children | 1e72fa29d3fb |
line diff
1.1 --- a/libraries/extos/Makefile Sat Oct 12 20:35:00 2019 +0200 1.2 +++ b/libraries/extos/Makefile Sat Oct 19 15:05:55 2019 +0200 1.3 @@ -1,7 +1,7 @@ 1.4 include ../../Makefile.options 1.5 1.6 extos.so: extos.o 1.7 - $(LD) $(LDFLAGS) -lrt -lcrypt -o extos.$(SLIB_EXT) extos.o 1.8 + $(CC) $(SHAREDFLAGS) -lrt -lcrypt -o extos.$(SLIB_EXT) extos.o 1.9 1.10 extos.o: extos.c 1.11 $(CC) -c $(CFLAGS) -o extos.o extos.c