Add a few more target platforms, to see how well the shared library
linking works on them.
This commit is contained in:
parent
ca80756c70
commit
fa4bde98d2
@ -34,13 +34,17 @@ update: FORCE.update
|
|||||||
perl ../../../util/mkerr.pl -conf rsaref.ec \
|
perl ../../../util/mkerr.pl -conf rsaref.ec \
|
||||||
-nostatic -staticloader -write rsaref.c
|
-nostatic -staticloader -write rsaref.c
|
||||||
|
|
||||||
|
darwin: install $(SHLIB).darwin
|
||||||
|
cygwin: install $(SHLIB).cygwin
|
||||||
gnu: install $(SHLIB).gnu
|
gnu: install $(SHLIB).gnu
|
||||||
|
alpha-osf1: install $(SHLIB).alpha-osf1
|
||||||
tru64: install $(SHLIB).tru64
|
tru64: install $(SHLIB).tru64
|
||||||
solaris: install $(SHLIB).solaris
|
solaris: install $(SHLIB).solaris
|
||||||
irix: install $(SHLIB).irix
|
irix: install $(SHLIB).irix
|
||||||
hpux32: install $(SHLIB).hpux32
|
hpux32: install $(SHLIB).hpux32
|
||||||
hpux64: install $(SHLIB).hpux64
|
hpux64: install $(SHLIB).hpux64
|
||||||
aix: install $(SHLIB).aix
|
aix: install $(SHLIB).aix
|
||||||
|
reliantunix: install $(SHLIB).reliantunix
|
||||||
|
|
||||||
$(LIB): $(OBJ)
|
$(LIB): $(OBJ)
|
||||||
$(AR) $(LIB) $(OBJ)
|
$(AR) $(LIB) $(OBJ)
|
||||||
@ -51,6 +55,18 @@ LINK_SO= \
|
|||||||
(nm -Pg $(LIBNAME).o | grep ' [BDT] ' | cut -f1 -d' ' > $(LIBNAME).exp; \
|
(nm -Pg $(LIBNAME).o | grep ' [BDT] ' | cut -f1 -d' ' > $(LIBNAME).exp; \
|
||||||
$$SHAREDCMD $$SHAREDFLAGS -o $(SHLIB) $(LIBNAME).o -L ../../.. -lcrypto -lc)
|
$$SHAREDCMD $$SHAREDFLAGS -o $(SHLIB) $(LIBNAME).o -L ../../.. -lcrypto -lc)
|
||||||
|
|
||||||
|
$(SHLIB).darwin: $(LIB) install/librsaref.a
|
||||||
|
ALLSYMSFLAGS='-all_load' \
|
||||||
|
SHAREDFLAGS='-dynamiclib -install_name $(SHLIB)' \
|
||||||
|
SHAREDCMD='$(CC)'; \
|
||||||
|
$(LINK_SO)
|
||||||
|
touch $(SHLIB).gnu
|
||||||
|
$(SHLIB).cygwin: $(LIB) install/librsaref.a
|
||||||
|
ALLSYMSFLAGS='--whole-archive' \
|
||||||
|
SHAREDFLAGS='-shared -Wl,-Bsymbolic -Wl,--out-implib,$(LIBNAME).dll.a' \
|
||||||
|
SHAREDCMD='$(CC)'; \
|
||||||
|
$(LINK_SO)
|
||||||
|
touch $(SHLIB).gnu
|
||||||
$(SHLIB).gnu: $(LIB) install/librsaref.a
|
$(SHLIB).gnu: $(LIB) install/librsaref.a
|
||||||
ALLSYMSFLAGS='--whole-archive' \
|
ALLSYMSFLAGS='--whole-archive' \
|
||||||
SHAREDFLAGS='-shared -Wl,-soname=$(SHLIB)' \
|
SHAREDFLAGS='-shared -Wl,-soname=$(SHLIB)' \
|
||||||
|
Loading…
x
Reference in New Issue
Block a user