Print this page
8411 Build should warn when linking against libraries outside proto area
Split |
Close |
Expand all |
Collapse all |
--- old/usr/src/lib/Makefile.lib
+++ new/usr/src/lib/Makefile.lib
1 1 #
2 2 # CDDL HEADER START
3 3 #
4 4 # The contents of this file are subject to the terms of the
5 5 # Common Development and Distribution License (the "License").
6 6 # You may not use this file except in compliance with the License.
7 7 #
8 8 # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 9 # or http://www.opensolaris.org/os/licensing.
10 10 # See the License for the specific language governing permissions
11 11 # and limitations under the License.
12 12 #
13 13 # When distributing Covered Code, include this CDDL HEADER in each
↓ open down ↓ |
13 lines elided |
↑ open up ↑ |
14 14 # file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 15 # If applicable, add the following below this CDDL HEADER, with the
16 16 # fields enclosed by brackets "[]" replaced with your own identifying
17 17 # information: Portions Copyright [yyyy] [name of copyright owner]
18 18 #
19 19 # CDDL HEADER END
20 20 #
21 21 # Copyright 2015 Gary Mills
22 22 # Copyright 2015 Igor Kozhukhov <ikozhukhov@gmail.com>
23 23 # Copyright (c) 1989, 2010, Oracle and/or its affiliates. All rights reserved.
24 +# Copyright 2017 RackTop Systems.
24 25 #
25 26 #
26 27 # Definitions common to libraries.
27 28 #
28 29 # include global definitions; SRC should be defined in the shell.
29 30 # SRC is needed until RFE 1026993 is implemented.
30 31
31 32 include $(SRC)/Makefile.master
32 33
33 34 LORDER= lorder
34 35 TSORT= tsort
35 36
36 37 #
37 38 # By default, we define the source directory for libraries to be
38 39 # one level up from the ISA-specific directory, where the code is
39 40 # actually built. Many libraries define a 'common' directory to
40 41 # contain the source. These libraries must redefine SRCDIR as:
41 42 # SRCDIR = ../common
42 43 # Other variations are possible (../port, ../src, etc).
43 44 #
44 45 SRCDIR = ..
45 46
46 47 #
47 48 # We define MAPFILES here for the benefit of most libraries, those that
48 49 # follow the convention of having source files and other common files
49 50 # in the $(SRCDIR) directory. Libraries that do not follow this
50 51 # convention must define MAPFILES, or MAPFILEDIR for themselves.
51 52 # Libraries that do follow this convention but that need supplemental
52 53 # ISA-specific mapfiles can augment MAPFILES like this:
53 54 # MAPFILES += mapfile-vers
54 55 #
55 56 MAPFILEDIR = $(SRCDIR)
56 57 MAPFILES = $(MAPFILEDIR)/mapfile-vers
57 58
58 59 #
59 60 # If HDRDIR is left unset, then it's possible for the $(ROOTHDRDIR)/%
60 61 # install rule in lib/Makefile.targ to generate false matches if there
61 62 # are any common directory names between / and /usr/include (`xfn' is
62 63 # one common example). To prevent this, we set HDRDIR to a directory
63 64 # name that will almost surely not exist on the build machine.
64 65 #
65 66 HDRDIR= /__nonexistent_directory__
66 67
67 68 #
68 69 # We don't build archive (*.a) libraries by default anymore.
69 70 # If a component of the build needs to build an archive library
70 71 # for its own internal purposes, it can define LIBS for itself
71 72 # after including Makefile.lib, like this:
72 73 # LIBS = $(LIBRARY)
73 74 # or:
74 75 # LIBS = $(LIBRARYCCC)
75 76 # Archive libraries must not be installed in the proto area.
76 77 #
77 78 LIBS=
78 79 MACHLIBS= $(LIBS:%=$(MACH)/%)
79 80 MACHLIBS64= $(LIBS:%=$(MACH64)/%)
80 81 DYNLIB= $(LIBRARY:.a=.so$(VERS))
81 82 DYNLIBPSR= $(LIBRARY:.a=_psr.so$(VERS))
82 83 DYNLIBCCC= $(LIBRARYCCC:.a=.so$(VERS))
83 84 LIBLINKS= $(LIBRARY:.a=.so)
84 85 LIBLINKSCCC= $(LIBRARYCCC:.a=.so)
85 86 LIBNAME= $(LIBRARY:lib%.a=%)
86 87 LIBLINKPATH=
87 88 LIBNULL= null.a
88 89 ROOTHDRDIR= $(ROOT)/usr/include
89 90 ROOTLIBDIR= $(ROOT)/usr/lib
90 91 ROOTLIBDIR64= $(ROOT)/usr/lib/$(MACH64)
91 92 ROOTFS_LIBDIR= $(ROOT)/lib
92 93 ROOTFS_LIBDIR64= $(ROOT)/lib/$(MACH64)
93 94 ROOTLINTDIR= $(ROOTLIBDIR)
94 95 ROOTFS_LINTDIR= $(ROOTFS_LIBDIR)
95 96 ROOTFS_LINTDIR64= $(ROOTFS_LIBDIR64)
96 97 ROOTHDRS= $(HDRS:%=$(ROOTHDRDIR)/%)
97 98 HDRSRCS= $(HDRS:%=$(HDRDIR)/%)
98 99 CHECKHDRS= $(HDRSRCS:%.h=%.check)
99 100 ROOTLIBS= $(LIBS:%=$(ROOTLIBDIR)/%)
100 101 ROOTLIBS64= $(LIBS:%=$(ROOTLIBDIR64)/%)
101 102 ROOTFS_LIBS= $(DYNLIB:%=$(ROOTFS_LIBDIR)/%)
102 103 ROOTFS_LIBS64= $(DYNLIB:%=$(ROOTFS_LIBDIR64)/%)
103 104 ROOTLINKS= $(ROOTLIBDIR)/$(LIBLINKS)
104 105 ROOTLINKS64= $(ROOTLIBDIR64)/$(LIBLINKS)
105 106 ROOTFS_LINKS= $(ROOTFS_LIBDIR)/$(LIBLINKS)
106 107 ROOTFS_LINKS64= $(ROOTFS_LIBDIR64)/$(LIBLINKS)
107 108 ROOTLINKSCCC= $(ROOTLIBDIR)/$(LIBLINKSCCC)
108 109 ROOTLINKSCCC64= $(ROOTLIBDIR64)/$(LIBLINKSCCC)
109 110 ROOTFS_LINKSCCC= $(ROOTFS_LIBDIR)/$(LIBLINKSCCC)
110 111 ROOTFS_LINKSCCC64= $(ROOTFS_LIBDIR64)/$(LIBLINKSCCC)
111 112 ROOTLINT= $(LINTSRC:%=$(ROOTLINTDIR)/%)
112 113 ROOTFS_LINT= $(LINTSRC:%=$(ROOTFS_LINTDIR)/%)
113 114 ROOTFS_LINT64= $(LINTSRC:%=$(ROOTFS_LINTDIR64)/%)
114 115 ROOTMAN3= $(ROOT)/usr/share/man/man3
115 116 ROOTMAN3FILES= $(MAN3FILES:%=$(ROOTMAN3)/%)
116 117 $(ROOTMAN3FILES) := FILEMODE= 444
117 118
118 119 # Demo rules
119 120 DEMOFILES=
120 121 DEMOFILESRCDIR= common
121 122 ROOTDEMODIRBASE= __nonexistent_directory__
122 123 ROOTDEMODIRS=
123 124 ROOTDEMOFILES= $(DEMOFILES:%=$(ROOTDEMODIRBASE)/%)
124 125 $(ROOTDEMODIRS) := DIRMODE = 755
125 126
126 127 LINTLIB= llib-l$(LIBNAME).ln
127 128 LINTFLAGS= -uaxm
128 129 LINTFLAGS64= -uaxm -m64
129 130 LINTSRC= $(LINTLIB:%.ln=%)
↓ open down ↓ |
96 lines elided |
↑ open up ↑ |
130 131 LINTOUT= lint.out
131 132 ARFLAGS= r
132 133 SONAME= $(DYNLIB)
133 134 # For most libraries, we should be able to resolve all symbols at link time,
134 135 # either within the library or as dependencies, all text should be pure, and
135 136 # combining relocations into one relocation table reduces startup costs.
136 137 # All options are tunable to allow overload/omission from lower makefiles.
137 138
138 139
139 140 HSONAME= -h$(SONAME)
140 -DYNFLAGS= $(HSONAME) $(ZTEXT) $(ZDEFS) $(BDIRECT) \
141 +DYNFLAGS= $(HSONAME) $(ZTEXT) $(ZDEFS) $(ZASSERTDEFLIB) $(BDIRECT) \
141 142 $(MAPFILES:%=-M%) $(MAPFILE.PGA:%=-M%) $(MAPFILE.NED:%=-M%)
142 143
143 144 LDLIBS= $(LDLIBS.lib)
144 145
145 146 OBJS= $(OBJECTS:%=objs/%)
146 147 PICS= $(OBJECTS:%=pics/%)
147 148
148 149 # Declare that all library .o's can all be made in parallel.
149 150 # The DUMMY target is for those instances where OBJS and PICS
150 151 # are empty (to avoid an unconditional .PARALLEL declaration).
151 152 .PARALLEL: $(OBJS) $(PICS) DUMMY
152 153
153 154 # default value for "portable" source
154 155 SRCS= $(OBJECTS:%.o=$(SRCDIR)/%.c)
155 156
156 157 # default build of an archive and a shared object,
157 158 # overridden locally when extra processing is needed
158 159 BUILD.AR= $(AR) $(ARFLAGS) $@ $(AROBJS)
159 160 BUILD.SO= $(CC) $(CFLAGS) -o $@ $(GSHARED) $(DYNFLAGS) \
160 161 $(PICS) $(EXTPICS) $(LDLIBS)
161 162 BUILDCCC.SO= $(CCC) $(CCFLAGS) -o $@ $(GSHARED) $(DYNFLAGS) \
162 163 $(PICS) $(EXTPICS) $(LDLIBS)
163 164
164 165 # default dynamic library symlink
165 166 INS.liblink= -$(RM) $@; $(SYMLINK) $(LIBLINKPATH)$(LIBLINKS)$(VERS) $@
166 167 INS.liblinkccc= -$(RM) $@; $(SYMLINK) $(LIBLINKPATH)$(LIBLINKSCCC)$(VERS) $@
167 168
168 169 # default 64-bit dynamic library symlink
169 170 INS.liblink64= -$(RM) $@; $(SYMLINK) $(LIBLINKPATH)$(LIBLINKS)$(VERS) $@
170 171 INS.liblinkccc64= -$(RM) $@; $(SYMLINK) $(LIBLINKPATH)$(LIBLINKSCCC)$(VERS) $@
171 172
172 173 #
173 174 # If appropriate, augment POST_PROCESS_O and POST_PROCESS_SO to do CTF
174 175 # processing. We'd like to just conditionally append to POST_PROCESS_O and
175 176 # POST_PROCESS_SO, but ParallelMake has a bug which causes the same value to
176 177 # sometimes get appended more than once, which will cause ctfconvert to fail.
177 178 # So, instead we introduce CTFCONVERT_POST and CTFMERGE_POST, which are always
178 179 # appended to POST_PROCESS_O and POST_PROCESS_SO but are no-ops unless CTF
179 180 # processing should be done.
180 181 #
181 182 CTFCONVERT_POST = :
182 183 CTFMERGE_POST = :
183 184 POST_PROCESS_O += ; $(CTFCONVERT_POST)
184 185 POST_PROCESS_SO += ; $(CTFMERGE_POST)
185 186
186 187 CTFMERGE_LIB = $(CTFMERGE) $(CTFMRGFLAGS) -t -f -L VERSION -o $@ $(PICS)
187 188
188 189 # conditional assignments
189 190
190 191 $(OBJS) := sparc_CFLAGS += -xregs=no%appl
191 192
192 193 $(PICS) := sparc_CFLAGS += -xregs=no%appl $(sparc_C_PICFLAGS)
193 194 $(PICS) := sparcv9_CFLAGS += -xregs=no%appl $(sparcv9_C_PICFLAGS)
194 195 $(PICS) := i386_CFLAGS += $(i386_C_PICFLAGS)
195 196 $(PICS) := amd64_CFLAGS += $(amd64_C_PICFLAGS)
196 197 $(PICS) := CCFLAGS += $(CC_PICFLAGS)
197 198 $(PICS) := CPPFLAGS += -DPIC -D_REENTRANT
198 199 $(PICS) := sparcv9_CCFLAGS += -xregs=no%appl $(sparcv9_CC_PICFLAGS)
199 200 $(PICS) := amd64_CCFLAGS += $(amd64_CC_PICFLAGS)
200 201 $(PICS) := CFLAGS += $(CTF_FLAGS)
201 202 $(PICS) := CFLAGS64 += $(CTF_FLAGS)
202 203 $(PICS) := CTFCONVERT_POST = $(CTFCONVERT_O)
203 204 $(DYNLIB) := CTFMERGE_POST = $(CTFMERGE_LIB)
204 205
205 206 $(LINTLIB):= LOG = -DLOGGING
↓ open down ↓ |
55 lines elided |
↑ open up ↑ |
206 207 $(LIBRARY):= AROBJS = $(OBJS)
207 208 $(LIBRARY):= DIR = objs
208 209 $(DYNLIB):= DIR = pics
209 210 $(DYNLIBCCC):= DIR = pics
210 211
211 212 SONAMECCC= $(DYNLIBCCC)
212 213 HSONAMECCC= -h $(SONAMECCC)
213 214 #
214 215 # Keep in sync with the standard DYNFLAGS
215 216 #
216 -$(DYNLIBCCC):= DYNFLAGS = $(HSONAMECCC) $(ZTEXT) $(ZDEFS) \
217 +$(DYNLIBCCC):= DYNFLAGS = $(HSONAMECCC) $(ZTEXT) $(ZDEFS) $(ZASSERTDEFLIB) \
217 218 $(MAPFILES:%=-M%) $(MAPFILE.PGA:%=-M%) $(MAPFILE.NED:%=-M%) \
218 219 $(BDIRECT) $(NORUNPATH)
219 220
220 221
221 222 # build rule for "portable" source
222 223 objs/%.o pics/%.o: %.c
223 224 $(COMPILE.c) -o $@ $<
224 225 $(POST_PROCESS_O)
225 226
226 227 objs/%.o pics/%.o: %.cc
227 228 $(COMPILE.cc) -o $@ $<
228 229 $(POST_PROCESS_O)
229 230
230 231 .PRECIOUS: $(LIBS)
231 232
232 233 # Define the majority text domain in this directory.
233 234 TEXT_DOMAIN= SUNW_OST_OSLIB
234 235
235 236 $(ROOTMAN3)/%: %.sunman
236 237 $(INS.rename)
237 238
238 239 #
239 240 # For library source code, we expect that some symbols may not be used or
240 241 # may *appear* to be able to rescoped to static; shut lint up. Never add
241 242 # a flag here unless you're *sure* that all libraries need to be linted
242 243 # with it.
243 244 #
244 245 LINTCHECKFLAGS = -m -erroff=E_NAME_DEF_NOT_USED2
245 246 LINTCHECKFLAGS += -erroff=E_NAME_DECL_NOT_USED_DEF2
246 247
247 248 #
248 249 # Target Architecture
249 250 #
250 251 TARGETMACH= $(MACH)
251 252
252 253 #
253 254 # Allow people to define their own clobber rules. Normal makefiles
254 255 # shouldn't override this - they should override $(CLOBBERFILES) instead.
255 256 #
256 257 CLOBBERTARGFILES= $(LIBS) $(DYNLIB) $(CLOBBERFILES)
↓ open down ↓ |
30 lines elided |
↑ open up ↑ |
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX