> From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Neil Horman > Sent: Monday, December 22, 2014 8:24 PM > > a/mk/rte.lib.mk b/mk/rte.lib.mk index 7949254..ad058b5 100644 > --- a/mk/rte.lib.mk > +++ b/mk/rte.lib.mk > @@ -166,9 +171,11 @@ endif > # install lib in $(RTE_OUTPUT)/lib > # > $(RTE_OUTPUT)/lib/$(LIB): $(LIB) > + $(eval LIBSONAME := $(basename $(LIB))) > @echo " INSTALL-LIB $(LIB)" > @[ -d $(RTE_OUTPUT)/lib ] || mkdir -p $(RTE_OUTPUT)/lib > $(Q)cp -f $(LIB) $(RTE_OUTPUT)/lib > + $(Q)ln -s -f $(RTE_OUTPUT)/lib/$(LIB) > $(RTE_OUTPUT)/lib/$(LIBSONAME) > Sorry Neil, I missed this before. We probably only want to do symbolic links for shared libs. At the moment it creates lots of unwanted links for static libs too. Also, I would suggest to do relative symbolic links instead.
Regards, Sergio > -- > 1.9.3