mk: remove ABI versioning for external library
[dpdk.git] / mk / rte.lib.mk
1 #   BSD LICENSE
2 #
3 #   Copyright(c) 2010-2014 Intel Corporation. All rights reserved.
4 #   All rights reserved.
5 #
6 #   Redistribution and use in source and binary forms, with or without
7 #   modification, are permitted provided that the following conditions
8 #   are met:
9 #
10 #     * Redistributions of source code must retain the above copyright
11 #       notice, this list of conditions and the following disclaimer.
12 #     * Redistributions in binary form must reproduce the above copyright
13 #       notice, this list of conditions and the following disclaimer in
14 #       the documentation and/or other materials provided with the
15 #       distribution.
16 #     * Neither the name of Intel Corporation nor the names of its
17 #       contributors may be used to endorse or promote products derived
18 #       from this software without specific prior written permission.
19 #
20 #   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21 #   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22 #   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
23 #   A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
24 #   OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25 #   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
26 #   LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27 #   DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28 #   THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29 #   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
30 #   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31
32 include $(RTE_SDK)/mk/internal/rte.compile-pre.mk
33 include $(RTE_SDK)/mk/internal/rte.install-pre.mk
34 include $(RTE_SDK)/mk/internal/rte.clean-pre.mk
35 include $(RTE_SDK)/mk/internal/rte.build-pre.mk
36 include $(RTE_SDK)/mk/internal/rte.depdirs-pre.mk
37
38 EXTLIB_BUILD ?= n
39
40 # VPATH contains at least SRCDIR
41 VPATH += $(SRCDIR)
42
43 ifeq ($(CONFIG_RTE_BUILD_SHARED_LIB),y)
44 LIB := $(patsubst %.a,%.so.$(LIBABIVER),$(LIB))
45 ifeq ($(EXTLIB_BUILD),n)
46 ifeq ($(CONFIG_RTE_NEXT_ABI),y)
47 LIB := $(LIB).1
48 endif
49 CPU_LDFLAGS += --version-script=$(SRCDIR)/$(EXPORT_MAP)
50 endif
51 endif
52
53
54 _BUILD = $(LIB)
55 _INSTALL = $(INSTALL-FILES-y) $(SYMLINK-FILES-y) $(RTE_OUTPUT)/lib/$(LIB)
56 _CLEAN = doclean
57
58 .PHONY: all
59 all: install
60
61 .PHONY: install
62 install: build _postinstall
63
64 _postinstall: build
65
66 .PHONY: build
67 build: _postbuild
68
69 exe2cmd = $(strip $(call dotfile,$(patsubst %,%.cmd,$(1))))
70
71 ifeq ($(LINK_USING_CC),1)
72 # Override the definition of LD here, since we're linking with CC
73 LD := $(CC) $(CPU_CFLAGS)
74 _CPU_LDFLAGS := $(call linkerprefix,$(CPU_LDFLAGS))
75 override EXTRA_LDFLAGS := $(call linkerprefix,$(EXTRA_LDFLAGS))
76 else
77 _CPU_LDFLAGS := $(CPU_LDFLAGS)
78 endif
79
80 O_TO_A = $(AR) crDs $(LIB) $(OBJS-y)
81 O_TO_A_STR = $(subst ','\'',$(O_TO_A)) #'# fix syntax highlight
82 O_TO_A_DISP = $(if $(V),"$(O_TO_A_STR)","  AR $(@)")
83 O_TO_A_CMD = "cmd_$@ = $(O_TO_A_STR)"
84 O_TO_A_DO = @set -e; \
85         echo $(O_TO_A_DISP); \
86         $(O_TO_A) && \
87         echo $(O_TO_A_CMD) > $(call exe2cmd,$(@))
88
89 O_TO_S = $(LD) $(_CPU_LDFLAGS) $(EXTRA_LDFLAGS) -shared $(OBJS-y) $(LDLIBS) \
90          -Wl,-soname,$(LIB) -o $(LIB)
91 O_TO_S_STR = $(subst ','\'',$(O_TO_S)) #'# fix syntax highlight
92 O_TO_S_DISP = $(if $(V),"$(O_TO_S_STR)","  LD $(@)")
93 O_TO_S_DO = @set -e; \
94         echo $(O_TO_S_DISP); \
95         $(O_TO_S) && \
96         echo $(O_TO_S_CMD) > $(call exe2cmd,$(@))
97
98 ifeq ($(CONFIG_RTE_BUILD_SHARED_LIB),n)
99 O_TO_C = $(AR) crus $(LIB_ONE) $(OBJS-y)
100 O_TO_C_STR = $(subst ','\'',$(O_TO_C)) #'# fix syntax highlight
101 O_TO_C_DISP = $(if $(V),"$(O_TO_C_STR)","  AR_C $(@)")
102 O_TO_C_DO = @set -e; \
103         $(lib_dir) \
104         $(copy_obj)
105 else
106 O_TO_C = $(LD) -shared $(OBJS-y) -o $(LIB_ONE)
107 O_TO_C_STR = $(subst ','\'',$(O_TO_C)) #'# fix syntax highlight
108 O_TO_C_DISP = $(if $(V),"$(O_TO_C_STR)","  LD_C $(@)")
109 O_TO_C_DO = @set -e; \
110         $(lib_dir) \
111         $(copy_obj)
112 endif
113
114 copy_obj = cp -f $(OBJS-y) $(RTE_OUTPUT)/build/lib;
115 lib_dir = [ -d $(RTE_OUTPUT)/lib ] || mkdir -p $(RTE_OUTPUT)/lib;
116 -include .$(LIB).cmd
117
118 #
119 # Archive objects in .a file if needed
120 #
121 ifeq ($(CONFIG_RTE_BUILD_SHARED_LIB),y)
122 $(LIB): $(OBJS-y) $(DEP_$(LIB)) FORCE
123 ifeq ($(LIBABIVER),)
124         @echo "Must Specify a $(LIB) ABI version"
125         @false
126 endif
127         @[ -d $(dir $@) ] || mkdir -p $(dir $@)
128         $(if $(D),\
129                 @echo -n "$< -> $@ " ; \
130                 echo -n "file_missing=$(call boolean,$(file_missing)) " ; \
131                 echo -n "cmdline_changed=$(call boolean,$(call cmdline_changed,$(O_TO_S_STR))) " ; \
132                 echo -n "depfile_missing=$(call boolean,$(depfile_missing)) " ; \
133                 echo "depfile_newer=$(call boolean,$(depfile_newer)) ")
134         $(if $(or \
135                 $(file_missing),\
136                 $(call cmdline_changed,$(O_TO_S_STR)),\
137                 $(depfile_missing),\
138                 $(depfile_newer)),\
139                 $(O_TO_S_DO))
140
141 ifeq ($(CONFIG_RTE_BUILD_COMBINE_LIBS),y)
142         $(if $(or \
143         $(file_missing),\
144         $(call cmdline_changed,$(O_TO_C_STR)),\
145         $(depfile_missing),\
146         $(depfile_newer)),\
147         $(O_TO_C_DO))
148 endif
149 else
150 $(LIB): $(OBJS-y) $(DEP_$(LIB)) FORCE
151         @[ -d $(dir $@) ] || mkdir -p $(dir $@)
152         $(if $(D),\
153             @echo -n "$< -> $@ " ; \
154             echo -n "file_missing=$(call boolean,$(file_missing)) " ; \
155             echo -n "cmdline_changed=$(call boolean,$(call cmdline_changed,$(O_TO_A_STR))) " ; \
156             echo -n "depfile_missing=$(call boolean,$(depfile_missing)) " ; \
157             echo "depfile_newer=$(call boolean,$(depfile_newer)) ")
158         $(if $(or \
159             $(file_missing),\
160             $(call cmdline_changed,$(O_TO_A_STR)),\
161             $(depfile_missing),\
162             $(depfile_newer)),\
163             $(O_TO_A_DO))
164 ifeq ($(CONFIG_RTE_BUILD_COMBINE_LIBS),y)
165         $(if $(or \
166         $(file_missing),\
167         $(call cmdline_changed,$(O_TO_C_STR)),\
168         $(depfile_missing),\
169         $(depfile_newer)),\
170         $(O_TO_C_DO))
171 endif
172 endif
173
174 #
175 # install lib in $(RTE_OUTPUT)/lib
176 #
177 $(RTE_OUTPUT)/lib/$(LIB): $(LIB)
178         @echo "  INSTALL-LIB $(LIB)"
179         @[ -d $(RTE_OUTPUT)/lib ] || mkdir -p $(RTE_OUTPUT)/lib
180         $(Q)cp -f $(LIB) $(RTE_OUTPUT)/lib
181 ifeq ($(CONFIG_RTE_BUILD_SHARED_LIB),y)
182 ifeq ($(CONFIG_RTE_NEXT_ABI)$(EXTLIB_BUILD),yn)
183         $(Q)ln -s -f $< $(basename $(basename $@))
184 else
185         $(Q)ln -s -f $< $(basename $@)
186 endif
187 endif
188
189 #
190 # Clean all generated files
191 #
192 .PHONY: clean
193 clean: _postclean
194
195 .PHONY: doclean
196 doclean:
197         $(Q)rm -rf $(LIB) $(OBJS-all) $(DEPS-all) $(DEPSTMP-all) \
198           $(CMDS-all) $(INSTALL-FILES-all)
199         $(Q)rm -f $(_BUILD_TARGETS) $(_INSTALL_TARGETS) $(_CLEAN_TARGETS)
200
201 include $(RTE_SDK)/mk/internal/rte.compile-post.mk
202 include $(RTE_SDK)/mk/internal/rte.install-post.mk
203 include $(RTE_SDK)/mk/internal/rte.clean-post.mk
204 include $(RTE_SDK)/mk/internal/rte.build-post.mk
205 include $(RTE_SDK)/mk/internal/rte.depdirs-post.mk
206
207 .PHONY: FORCE
208 FORCE: