aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEmese Revfy <re.emese@gmail.com>2016-05-23 18:08:25 -0400
committerMichal Marek <mmarek@suse.com>2016-06-07 16:57:10 -0400
commit24403874316a7180d367e51d7f7e25d5de1f78dd (patch)
treeaf73e52ba1709a6ff79977f363b0d481825c1885
parent1a695a905c18548062509178b98bc91e67510864 (diff)
Shared library support
Infrastructure for building independent shared library targets. Based on work created by the PaX Team. Signed-off-by: Emese Revfy <re.emese@gmail.com> Acked-by: Kees Cook <keescook@chromium.org> Signed-off-by: Michal Marek <mmarek@suse.com>
-rw-r--r--scripts/Makefile.build2
-rw-r--r--scripts/Makefile.clean4
-rw-r--r--scripts/Makefile.host55
3 files changed, 58 insertions, 3 deletions
diff --git a/scripts/Makefile.build b/scripts/Makefile.build
index 0d1ca5bf42fb..11602e5efb3b 100644
--- a/scripts/Makefile.build
+++ b/scripts/Makefile.build
@@ -60,7 +60,7 @@ endif
60endif 60endif
61 61
62# Do not include host rules unless needed 62# Do not include host rules unless needed
63ifneq ($(hostprogs-y)$(hostprogs-m),) 63ifneq ($(hostprogs-y)$(hostprogs-m)$(hostlibs-y)$(hostlibs-m)$(hostcxxlibs-y)$(hostcxxlibs-m),)
64include scripts/Makefile.host 64include scripts/Makefile.host
65endif 65endif
66 66
diff --git a/scripts/Makefile.clean b/scripts/Makefile.clean
index 55c96cb8070f..50616ea25131 100644
--- a/scripts/Makefile.clean
+++ b/scripts/Makefile.clean
@@ -38,7 +38,9 @@ subdir-ymn := $(addprefix $(obj)/,$(subdir-ymn))
38__clean-files := $(extra-y) $(extra-m) $(extra-) \ 38__clean-files := $(extra-y) $(extra-m) $(extra-) \
39 $(always) $(targets) $(clean-files) \ 39 $(always) $(targets) $(clean-files) \
40 $(host-progs) \ 40 $(host-progs) \
41 $(hostprogs-y) $(hostprogs-m) $(hostprogs-) 41 $(hostprogs-y) $(hostprogs-m) $(hostprogs-) \
42 $(hostlibs-y) $(hostlibs-m) $(hostlibs-) \
43 $(hostcxxlibs-y) $(hostcxxlibs-m)
42 44
43__clean-files := $(filter-out $(no-clean-files), $(__clean-files)) 45__clean-files := $(filter-out $(no-clean-files), $(__clean-files))
44 46
diff --git a/scripts/Makefile.host b/scripts/Makefile.host
index 133edfae5b8a..45b5b1aaedbd 100644
--- a/scripts/Makefile.host
+++ b/scripts/Makefile.host
@@ -20,7 +20,15 @@
20# Will compile qconf as a C++ program, and menu as a C program. 20# Will compile qconf as a C++ program, and menu as a C program.
21# They are linked as C++ code to the executable qconf 21# They are linked as C++ code to the executable qconf
22 22
23# hostcc-option
24# Usage: cflags-y += $(call hostcc-option,-march=winchip-c6,-march=i586)
25
26hostcc-option = $(call try-run,\
27 $(HOSTCC) $(HOSTCFLAGS) $(HOST_EXTRACFLAGS) $(1) -c -x c /dev/null -o "$$TMP",$(1),$(2))
28
23__hostprogs := $(sort $(hostprogs-y) $(hostprogs-m)) 29__hostprogs := $(sort $(hostprogs-y) $(hostprogs-m))
30host-cshlib := $(sort $(hostlibs-y) $(hostlibs-m))
31host-cxxshlib := $(sort $(hostcxxlibs-y) $(hostcxxlibs-m))
24 32
25# C code 33# C code
26# Executables compiled from a single .c file 34# Executables compiled from a single .c file
@@ -42,6 +50,10 @@ host-cxxmulti := $(foreach m,$(__hostprogs),$(if $($(m)-cxxobjs),$(m)))
42# C++ Object (.o) files compiled from .cc files 50# C++ Object (.o) files compiled from .cc files
43host-cxxobjs := $(sort $(foreach m,$(host-cxxmulti),$($(m)-cxxobjs))) 51host-cxxobjs := $(sort $(foreach m,$(host-cxxmulti),$($(m)-cxxobjs)))
44 52
53# Object (.o) files used by the shared libaries
54host-cshobjs := $(sort $(foreach m,$(host-cshlib),$($(m:.so=-objs))))
55host-cxxshobjs := $(sort $(foreach m,$(host-cxxshlib),$($(m:.so=-objs))))
56
45# output directory for programs/.o files 57# output directory for programs/.o files
46# hostprogs-y := tools/build may have been specified. 58# hostprogs-y := tools/build may have been specified.
47# Retrieve also directory of .o files from prog-objs or prog-cxxobjs notation 59# Retrieve also directory of .o files from prog-objs or prog-cxxobjs notation
@@ -56,6 +68,10 @@ host-cmulti := $(addprefix $(obj)/,$(host-cmulti))
56host-cobjs := $(addprefix $(obj)/,$(host-cobjs)) 68host-cobjs := $(addprefix $(obj)/,$(host-cobjs))
57host-cxxmulti := $(addprefix $(obj)/,$(host-cxxmulti)) 69host-cxxmulti := $(addprefix $(obj)/,$(host-cxxmulti))
58host-cxxobjs := $(addprefix $(obj)/,$(host-cxxobjs)) 70host-cxxobjs := $(addprefix $(obj)/,$(host-cxxobjs))
71host-cshlib := $(addprefix $(obj)/,$(host-cshlib))
72host-cxxshlib := $(addprefix $(obj)/,$(host-cxxshlib))
73host-cshobjs := $(addprefix $(obj)/,$(host-cshobjs))
74host-cxxshobjs := $(addprefix $(obj)/,$(host-cxxshobjs))
59host-objdirs := $(addprefix $(obj)/,$(host-objdirs)) 75host-objdirs := $(addprefix $(obj)/,$(host-objdirs))
60 76
61obj-dirs += $(host-objdirs) 77obj-dirs += $(host-objdirs)
@@ -124,5 +140,42 @@ quiet_cmd_host-cxxobjs = HOSTCXX $@
124$(host-cxxobjs): $(obj)/%.o: $(src)/%.cc FORCE 140$(host-cxxobjs): $(obj)/%.o: $(src)/%.cc FORCE
125 $(call if_changed_dep,host-cxxobjs) 141 $(call if_changed_dep,host-cxxobjs)
126 142
143# Compile .c file, create position independent .o file
144# host-cshobjs -> .o
145quiet_cmd_host-cshobjs = HOSTCC -fPIC $@
146 cmd_host-cshobjs = $(HOSTCC) $(hostc_flags) -fPIC -c -o $@ $<
147$(host-cshobjs): $(obj)/%.o: $(src)/%.c FORCE
148 $(call if_changed_dep,host-cshobjs)
149
150# Compile .c file, create position independent .o file
151# Note that plugin capable gcc versions can be either C or C++ based
152# therefore plugin source files have to be compilable in both C and C++ mode.
153# This is why a C++ compiler is invoked on a .c file.
154# host-cxxshobjs -> .o
155quiet_cmd_host-cxxshobjs = HOSTCXX -fPIC $@
156 cmd_host-cxxshobjs = $(HOSTCXX) $(hostcxx_flags) -fPIC -c -o $@ $<
157$(host-cxxshobjs): $(obj)/%.o: $(src)/%.c FORCE
158 $(call if_changed_dep,host-cxxshobjs)
159
160# Link a shared library, based on position independent .o files
161# *.o -> .so shared library (host-cshlib)
162quiet_cmd_host-cshlib = HOSTLLD -shared $@
163 cmd_host-cshlib = $(HOSTCC) $(HOSTLDFLAGS) -shared -o $@ \
164 $(addprefix $(obj)/,$($(@F:.so=-objs))) \
165 $(HOST_LOADLIBES) $(HOSTLOADLIBES_$(@F))
166$(host-cshlib): FORCE
167 $(call if_changed,host-cshlib)
168$(call multi_depend, $(host-cshlib), .so, -objs)
169
170# Link a shared library, based on position independent .o files
171# *.o -> .so shared library (host-cxxshlib)
172quiet_cmd_host-cxxshlib = HOSTLLD -shared $@
173 cmd_host-cxxshlib = $(HOSTCXX) $(HOSTLDFLAGS) -shared -o $@ \
174 $(addprefix $(obj)/,$($(@F:.so=-objs))) \
175 $(HOST_LOADLIBES) $(HOSTLOADLIBES_$(@F))
176$(host-cxxshlib): FORCE
177 $(call if_changed,host-cxxshlib)
178$(call multi_depend, $(host-cxxshlib), .so, -objs)
179
127targets += $(host-csingle) $(host-cmulti) $(host-cobjs)\ 180targets += $(host-csingle) $(host-cmulti) $(host-cobjs)\
128 $(host-cxxmulti) $(host-cxxobjs) 181 $(host-cxxmulti) $(host-cxxobjs) $(host-cshlib) $(host-cshobjs) $(host-cxxshlib) $(host-cxxshobjs)