Print this page
1681 support for BUILD64=# no longer works
Split |
Close |
Expand all |
Collapse all |
--- old/usr/src/Makefile.master
+++ new/usr/src/Makefile.master
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
14 14 # file and include the License file at usr/src/OPENSOLARIS.LICENSE.
↓ open down ↓ |
14 lines elided |
↑ open up ↑ |
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
22 22 #
23 23 # Copyright (c) 1989, 2010, Oracle and/or its affiliates. All rights reserved.
24 24 # Copyright (c) 2012 by Delphix. All rights reserved.
25 +# Copyright (c) 2014 Andrew Stormont.
25 26 #
26 27
27 28 #
28 29 # Makefile.master, global definitions for system source
29 30 #
30 31 ROOT= /proto
31 32
32 33 #
33 34 # Adjunct root, containing an additional proto area to be used for headers
34 35 # and libraries.
35 36 #
36 37 ADJUNCT_PROTO=
37 38
38 39 #
39 40 # Adjunct for building things that run on the build machine.
40 41 #
41 42 NATIVE_ADJUNCT= /usr
42 43
43 44 #
44 45 # RELEASE_BUILD should be cleared for final release builds.
45 46 # NOT_RELEASE_BUILD is exactly what the name implies.
46 47 #
47 48 # __GNUC toggles the building of ON components using gcc and related tools.
48 49 # Normally set to `#', set it to `' to do gcc build.
49 50 #
50 51 # The declaration POUND_SIGN is always '#'. This is needed to get around the
51 52 # make feature that '#' is always a comment delimiter, even when escaped or
52 53 # quoted. We use this macro expansion method to get POUND_SIGN rather than
53 54 # always breaking out a shell because the general case can cause a noticable
54 55 # slowdown in build times when so many Makefiles include Makefile.master.
55 56 #
56 57 # While the majority of users are expected to override the setting below
57 58 # with an env file (via nightly or bldenv), if you aren't building that way
58 59 # (ie, you're using "ws" or some other bootstrapping method) then you need
59 60 # this definition in order to avoid the subshell invocation mentioned above.
60 61 #
61 62
62 63 PRE_POUND= pre\#
63 64 POUND_SIGN= $(PRE_POUND:pre\%=%)
64 65
65 66 NOT_RELEASE_BUILD=
66 67 RELEASE_BUILD= $(POUND_SIGN)
67 68 $(RELEASE_BUILD)NOT_RELEASE_BUILD= $(POUND_SIGN)
68 69 PATCH_BUILD= $(POUND_SIGN)
69 70
70 71 # SPARC_BLD is '#' for an Intel build.
71 72 # INTEL_BLD is '#' for a Sparc build.
72 73 SPARC_BLD_1= $(MACH:i386=$(POUND_SIGN))
73 74 SPARC_BLD= $(SPARC_BLD_1:sparc=)
74 75 INTEL_BLD_1= $(MACH:sparc=$(POUND_SIGN))
75 76 INTEL_BLD= $(INTEL_BLD_1:i386=)
76 77
77 78 # The variables below control the compilers used during the build.
78 79 # There are a number of permutations.
79 80 #
80 81 # __GNUC and __SUNC control (and indicate) the primary compiler. Whichever
81 82 # one is not POUND_SIGN is the primary, with the other as the shadow. They
82 83 # may also be used to control entirely compiler-specific Makefile assignments.
83 84 # __GNUC and GCC are the default.
84 85 #
85 86 # __GNUC64 indicates that the 64bit build should use the GNU C compiler.
86 87 # There is no Sun C analogue.
87 88 #
88 89 # The following version-specific options are operative regardless of which
89 90 # compiler is primary, and control the versions of the given compilers to be
90 91 # used. They also allow compiler-version specific Makefile fragments.
91 92 #
92 93
93 94 __SUNC= $(POUND_SIGN)
94 95 $(__SUNC)__GNUC= $(POUND_SIGN)
95 96 __GNUC64= $(__GNUC)
96 97
97 98 # CLOSED is the root of the tree that contains source which isn't released
98 99 # as open source
99 100 CLOSED= $(SRC)/../closed
100 101
101 102 # BUILD_TOOLS is the root of all tools including compilers.
102 103 # ONBLD_TOOLS is the root of all the tools that are part of SUNWonbld.
103 104
104 105 BUILD_TOOLS= /ws/onnv-tools
105 106 ONBLD_TOOLS= $(BUILD_TOOLS)/onbld
106 107
107 108 JAVA_ROOT= /usr/java
108 109
109 110 SFW_ROOT= /usr/sfw
110 111 SFWINCDIR= $(SFW_ROOT)/include
111 112 SFWLIBDIR= $(SFW_ROOT)/lib
112 113 SFWLIBDIR64= $(SFW_ROOT)/lib/$(MACH64)
113 114
114 115 GCC_ROOT= /opt/gcc/4.4.4
115 116 GCCLIBDIR= $(GCC_ROOT)/lib
116 117 GCCLIBDIR64= $(GCC_ROOT)/lib/$(MACH64)
117 118
118 119 DOCBOOK_XSL_ROOT= /usr/share/sgml/docbook/xsl-stylesheets
119 120
120 121 RPCGEN= /usr/bin/rpcgen
121 122 STABS= $(ONBLD_TOOLS)/bin/$(MACH)/stabs
122 123 ELFEXTRACT= $(ONBLD_TOOLS)/bin/$(MACH)/elfextract
123 124 MBH_PATCH= $(ONBLD_TOOLS)/bin/$(MACH)/mbh_patch
124 125 ECHO= echo
125 126 INS= install
126 127 TRUE= true
127 128 SYMLINK= /usr/bin/ln -s
128 129 LN= /usr/bin/ln
129 130 CHMOD= /usr/bin/chmod
130 131 MV= /usr/bin/mv -f
131 132 RM= /usr/bin/rm -f
132 133 CUT= /usr/bin/cut
133 134 NM= /usr/ccs/bin/nm
134 135 DIFF= /usr/bin/diff
135 136 GREP= /usr/bin/grep
136 137 EGREP= /usr/bin/egrep
137 138 ELFWRAP= /usr/bin/elfwrap
138 139 KSH93= /usr/bin/ksh93
139 140 SED= /usr/bin/sed
140 141 NAWK= /usr/bin/nawk
141 142 CP= /usr/bin/cp -f
142 143 MCS= /usr/ccs/bin/mcs
143 144 CAT= /usr/bin/cat
144 145 ELFDUMP= /usr/ccs/bin/elfdump
145 146 M4= /usr/ccs/bin/m4
146 147 STRIP= /usr/ccs/bin/strip
147 148 LEX= /usr/ccs/bin/lex
148 149 FLEX= $(SFW_ROOT)/bin/flex
149 150 YACC= /usr/ccs/bin/yacc
150 151 CPP= /usr/lib/cpp
151 152 JAVAC= $(JAVA_ROOT)/bin/javac
152 153 JAVAH= $(JAVA_ROOT)/bin/javah
153 154 JAVADOC= $(JAVA_ROOT)/bin/javadoc
154 155 RMIC= $(JAVA_ROOT)/bin/rmic
155 156 JAR= $(JAVA_ROOT)/bin/jar
156 157 CTFCONVERT= $(ONBLD_TOOLS)/bin/$(MACH)/ctfconvert
157 158 CTFMERGE= $(ONBLD_TOOLS)/bin/$(MACH)/ctfmerge
158 159 CTFSTABS= $(ONBLD_TOOLS)/bin/$(MACH)/ctfstabs
159 160 CTFSTRIP= $(ONBLD_TOOLS)/bin/$(MACH)/ctfstrip
160 161 NDRGEN= $(ONBLD_TOOLS)/bin/$(MACH)/ndrgen
161 162 GENOFFSETS= $(ONBLD_TOOLS)/bin/genoffsets
162 163 CTFCVTPTBL= $(ONBLD_TOOLS)/bin/ctfcvtptbl
163 164 CTFFINDMOD= $(ONBLD_TOOLS)/bin/ctffindmod
164 165 XREF= $(ONBLD_TOOLS)/bin/xref
165 166 FIND= /usr/bin/find
166 167 PERL= /usr/bin/perl
167 168 PYTHON_26= /usr/bin/python2.6
168 169 PYTHON= $(PYTHON_26)
169 170 SORT= /usr/bin/sort
170 171 TOUCH= /usr/bin/touch
171 172 WC= /usr/bin/wc
172 173 XARGS= /usr/bin/xargs
173 174 ELFEDIT= /usr/bin/elfedit
174 175 ELFSIGN= /usr/bin/elfsign
175 176 DTRACE= /usr/sbin/dtrace -xnolibs
176 177 UNIQ= /usr/bin/uniq
177 178 TAR= /usr/bin/tar
178 179 ASTBINDIR= /usr/ast/bin
179 180 MSGCC= $(ASTBINDIR)/msgcc
180 181
181 182 FILEMODE= 644
182 183 DIRMODE= 755
183 184
184 185 #
185 186 # The version of the patch makeup table optimized for build-time use. Used
186 187 # during patch builds only.
187 188 $(PATCH_BUILD)PMTMO_FILE=$(SRC)/patch_makeup_table.mo
188 189
189 190 # Declare that nothing should be built in parallel.
190 191 # Individual Makefiles can use the .PARALLEL target to declare otherwise.
191 192 .NO_PARALLEL:
192 193
193 194 # For stylistic checks
194 195 #
195 196 # Note that the X and C checks are not used at this time and may need
196 197 # modification when they are actually used.
197 198 #
198 199 CSTYLE= $(ONBLD_TOOLS)/bin/cstyle
199 200 CSTYLE_TAIL=
200 201 HDRCHK= $(ONBLD_TOOLS)/bin/hdrchk
201 202 HDRCHK_TAIL=
202 203 JSTYLE= $(ONBLD_TOOLS)/bin/jstyle
203 204
204 205 DOT_H_CHECK= \
205 206 @$(ECHO) "checking $<"; $(CSTYLE) $< $(CSTYLE_TAIL); \
206 207 $(HDRCHK) $< $(HDRCHK_TAIL)
207 208
208 209 DOT_X_CHECK= \
209 210 @$(ECHO) "checking $<"; $(RPCGEN) -C -h $< | $(CSTYLE) $(CSTYLE_TAIL); \
210 211 $(RPCGEN) -C -h $< | $(HDRCHK) $< $(HDRCHK_TAIL)
211 212
212 213 DOT_C_CHECK= \
213 214 @$(ECHO) "checking $<"; $(CSTYLE) $< $(CSTYLE_TAIL)
214 215
215 216 MANIFEST_CHECK= \
216 217 @$(ECHO) "checking $<"; \
217 218 SVCCFG_DTD=$(SRC)/cmd/svc/dtd/service_bundle.dtd.1 \
218 219 SVCCFG_REPOSITORY=$(SRC)/cmd/svc/seed/global.db \
219 220 SVCCFG_CONFIGD_PATH=$(SRC)/cmd/svc/configd/svc.configd-native \
220 221 $(SRC)/cmd/svc/svccfg/svccfg-native validate $<
221 222
222 223 INS.file= $(RM) $@; $(INS) -s -m $(FILEMODE) -f $(@D) $<
223 224 INS.dir= $(INS) -s -d -m $(DIRMODE) $@
224 225 # installs and renames at once
225 226 #
226 227 INS.rename= $(INS.file); $(MV) $(@D)/$(<F) $@
227 228
228 229 # install a link
229 230 INSLINKTARGET= $<
230 231 INS.link= $(RM) $@; $(LN) $(INSLINKTARGET) $@
231 232 INS.symlink= $(RM) $@; $(SYMLINK) $(INSLINKTARGET) $@
232 233
233 234 #
234 235 # Python bakes the mtime of the .py file into the compiled .pyc and
235 236 # rebuilds if the baked-in mtime != the mtime of the source file
236 237 # (rather than only if it's less than), thus when installing python
237 238 # files we must make certain to not adjust the mtime of the source
238 239 # (.py) file.
↓ open down ↓ |
204 lines elided |
↑ open up ↑ |
239 240 #
240 241 INS.pyfile= $(INS.file); $(TOUCH) -r $< $@
241 242
242 243 # MACH must be set in the shell environment per uname -p on the build host
243 244 # More specific architecture variables should be set in lower makefiles.
244 245 #
245 246 # MACH64 is derived from MACH, and BUILD64 is set to `#' for
246 247 # architectures on which we do not build 64-bit versions.
247 248 # (There are no such architectures at the moment.)
248 249 #
249 -# Set BUILD64=# in the environment to disable 64-bit amd64
250 -# builds on i386 machines.
250 +# Set BUILD64=# in the environment to disable 64-bit builds.
251 251
252 252 MACH64_1= $(MACH:sparc=sparcv9)
253 253 MACH64= $(MACH64_1:i386=amd64)
254 254
255 255 MACH32_1= $(MACH:sparc=sparcv7)
256 256 MACH32= $(MACH32_1:i386=i86)
257 257
258 -sparc_BUILD64=
259 -i386_BUILD64=
260 -BUILD64= $($(MACH)_BUILD64)
258 +BUILD64=
259 +sparc_BUILD64= $(POUND_SIGN)
260 +i386_BUILD64= $(POUND_SIGN)
261 +$($(MACH)_BUILD64)= $(BUILD64)
262 +
263 +NOT_BUILD64=
264 +$(BUILD64)NOT_BUILD64= $(POUND_SIGN)
261 265
262 266 #
263 267 # C compiler mode. Future compilers may change the default on us,
264 268 # so force extended ANSI mode globally. Lower level makefiles can
265 269 # override this by setting CCMODE.
266 270 #
267 271 CCMODE= -Xa
268 272 CCMODE64= -Xa
269 273
270 274 #
271 275 # C compiler verbose mode. This is so we can enable it globally,
272 276 # but turn it off in the lower level makefiles of things we cannot
273 277 # (or aren't going to) fix.
274 278 #
275 279 CCVERBOSE= -v
276 280
277 281 # set this to the secret flag "-Wc,-Qiselect-v9abiwarn=1" to get warnings
278 282 # from the compiler about places the -xarch=v9 may differ from -xarch=v9c.
279 283 V9ABIWARN=
280 284
281 285 # set this to the secret flag "-Wc,-Qiselect-regsym=0" to disable register
282 286 # symbols (used to detect conflicts between objects that use global registers)
283 287 # we disable this now for safety, and because genunix doesn't link with
284 288 # this feature (the v9 default) enabled.
285 289 #
286 290 # REGSYM is separate since the C++ driver syntax is different.
287 291 CCREGSYM= -Wc,-Qiselect-regsym=0
288 292 CCCREGSYM= -Qoption cg -Qiselect-regsym=0
289 293
290 294 # Prevent the removal of static symbols by the SPARC code generator (cg).
291 295 # The x86 code generator (ube) does not remove such symbols and as such
292 296 # using this workaround is not applicable for x86.
293 297 #
294 298 CCSTATICSYM= -Wc,-Qassembler-ounrefsym=0
295 299 #
296 300 # generate 32-bit addresses in the v9 kernel. Saves memory.
297 301 CCABS32= -Wc,-xcode=abs32
298 302 #
299 303 # generate v9 code which tolerates callers using the v7 ABI, for the sake of
300 304 # system calls.
301 305 CC32BITCALLERS= -_gcc=-massume-32bit-callers
302 306
303 307 # GCC, especially, is increasingly beginning to auto-inline functions and
304 308 # sadly does so separately not under the general -fno-inline-functions
305 309 # Additionally, we wish to prevent optimisations which cause GCC to clone
306 310 # functions -- in particular, these may cause unhelpful symbols to be
307 311 # emitted instead of function names
308 312 CCNOAUTOINLINE= -_gcc=-fno-inline-small-functions \
309 313 -_gcc=-fno-inline-functions-called-once \
310 314 -_gcc=-fno-ipa-cp
311 315
312 316 # One optimization the compiler might perform is to turn this:
313 317 # #pragma weak foo
314 318 # extern int foo;
315 319 # if (&foo)
316 320 # foo = 5;
317 321 # into
318 322 # foo = 5;
319 323 # Since we do some of this (foo might be referenced in common kernel code
320 324 # but provided only for some cpu modules or platforms), we disable this
321 325 # optimization.
322 326 #
323 327 sparc_CCUNBOUND = -Wd,-xsafe=unboundsym
324 328 i386_CCUNBOUND =
325 329 CCUNBOUND = $($(MACH)_CCUNBOUND)
326 330
327 331 #
328 332 # compiler '-xarch' flag. This is here to centralize it and make it
329 333 # overridable for testing.
330 334 sparc_XARCH= -m32
331 335 sparcv9_XARCH= -m64
332 336 i386_XARCH=
333 337 amd64_XARCH= -m64 -Ui386 -U__i386
334 338
335 339 # assembler '-xarch' flag. Different from compiler '-xarch' flag.
336 340 sparc_AS_XARCH= -xarch=v8plus
337 341 sparcv9_AS_XARCH= -xarch=v9
338 342 i386_AS_XARCH=
339 343 amd64_AS_XARCH= -xarch=amd64 -P -Ui386 -U__i386
340 344
341 345 #
342 346 # These flags define what we need to be 'standalone' i.e. -not- part
343 347 # of the rather more cosy userland environment. This basically means
344 348 # the kernel.
345 349 #
346 350 # XX64 future versions of gcc will make -mcmodel=kernel imply -mno-red-zone
347 351 #
348 352 sparc_STAND_FLAGS= -_gcc=-ffreestanding
349 353 sparcv9_STAND_FLAGS= -_gcc=-ffreestanding
350 354 # Disabling MMX also disables 3DNow, disabling SSE also disables all later
351 355 # additions to SSE (SSE2, AVX ,etc.)
352 356 NO_SIMD= -_gcc=-mno-mmx -_gcc=-mno-sse
353 357 i386_STAND_FLAGS= -_gcc=-ffreestanding $(NO_SIMD)
354 358 amd64_STAND_FLAGS= -xmodel=kernel $(NO_SIMD)
355 359
356 360 SAVEARGS= -Wu,-save_args
357 361 amd64_STAND_FLAGS += $(SAVEARGS)
358 362
359 363 STAND_FLAGS_32 = $($(MACH)_STAND_FLAGS)
360 364 STAND_FLAGS_64 = $($(MACH64)_STAND_FLAGS)
361 365
362 366 #
363 367 # disable the incremental linker
364 368 ILDOFF= -xildoff
365 369 #
366 370 XDEPEND= -xdepend
367 371 XFFLAG= -xF=%all
368 372 XESS= -xs
369 373 XSTRCONST= -xstrconst
370 374
371 375 #
372 376 # turn warnings into errors (C)
373 377 CERRWARN = -errtags=yes -errwarn=%all
374 378 CERRWARN += -erroff=E_EMPTY_TRANSLATION_UNIT
375 379 CERRWARN += -erroff=E_STATEMENT_NOT_REACHED
376 380
377 381 CERRWARN += -_gcc=-Wno-missing-braces
378 382 CERRWARN += -_gcc=-Wno-sign-compare
379 383 CERRWARN += -_gcc=-Wno-unknown-pragmas
380 384 CERRWARN += -_gcc=-Wno-unused-parameter
381 385 CERRWARN += -_gcc=-Wno-missing-field-initializers
382 386
383 387 # Unfortunately, this option can misfire very easily and unfixably.
384 388 CERRWARN += -_gcc=-Wno-array-bounds
385 389
386 390 # DEBUG v. -nd make for frequent unused variables, empty conditions, etc. in
387 391 # -nd builds
388 392 $(RELEASE_BUILD)CERRWARN += -_gcc=-Wno-unused
389 393 $(RELEASE_BUILD)CERRWARN += -_gcc=-Wno-empty-body
390 394
391 395 #
392 396 # turn warnings into errors (C++)
393 397 CCERRWARN= -xwe
394 398
395 399 # C99 mode
396 400 C99_ENABLE= -xc99=%all
397 401 C99_DISABLE= -xc99=%none
398 402 C99MODE= $(C99_DISABLE)
399 403 C99LMODE= $(C99MODE:-xc99%=-Xc99%)
400 404
401 405 # In most places, assignments to these macros should be appended with +=
402 406 # (CPPFLAGS.master allows values to be prepended to CPPFLAGS).
403 407 sparc_CFLAGS= $(sparc_XARCH) $(CCSTATICSYM)
404 408 sparcv9_CFLAGS= $(sparcv9_XARCH) -dalign $(CCVERBOSE) $(V9ABIWARN) $(CCREGSYM) \
405 409 $(CCSTATICSYM)
406 410 i386_CFLAGS= $(i386_XARCH)
407 411 amd64_CFLAGS= $(amd64_XARCH)
408 412
409 413 sparc_ASFLAGS= $(sparc_AS_XARCH)
410 414 sparcv9_ASFLAGS=$(sparcv9_AS_XARCH)
411 415 i386_ASFLAGS= $(i386_AS_XARCH)
412 416 amd64_ASFLAGS= $(amd64_AS_XARCH)
413 417
414 418 #
415 419 sparc_COPTFLAG= -xO3
416 420 sparcv9_COPTFLAG= -xO3
417 421 i386_COPTFLAG= -O
418 422 amd64_COPTFLAG= -xO3
419 423
420 424 COPTFLAG= $($(MACH)_COPTFLAG)
421 425 COPTFLAG64= $($(MACH64)_COPTFLAG)
422 426
423 427 # When -g is used, the compiler globalizes static objects
424 428 # (gives them a unique prefix). Disable that.
425 429 CNOGLOBAL= -W0,-noglobal
426 430
427 431 # Direct the Sun Studio compiler to use a static globalization prefix based on the
428 432 # name of the module rather than something unique. Otherwise, objects
429 433 # will not build deterministically, as subsequent compilations of identical
430 434 # source will yeild objects that always look different.
431 435 #
432 436 # In the same spirit, this will also remove the date from the N_OPT stab.
433 437 CGLOBALSTATIC= -W0,-xglobalstatic
434 438
435 439 # Sometimes we want all symbols and types in debugging information even
436 440 # if they aren't used.
437 441 CALLSYMS= -W0,-xdbggen=no%usedonly
438 442
439 443 #
440 444 # Default debug format for Sun Studio 11 is dwarf, so force it to
441 445 # generate stabs.
442 446 #
443 447 DEBUGFORMAT= -xdebugformat=stabs
444 448
445 449 #
446 450 # Flags used to build in debug mode for ctf generation. Bugs in the Devpro
447 451 # compilers currently prevent us from building with cc-emitted DWARF.
448 452 #
449 453 CTF_FLAGS_sparc = -g -Wc,-Qiselect-T1 $(C99MODE) $(CNOGLOBAL) $(CDWARFSTR)
450 454 CTF_FLAGS_i386 = -g $(C99MODE) $(CNOGLOBAL) $(CDWARFSTR)
451 455
452 456 CTF_FLAGS_sparcv9 = $(CTF_FLAGS_sparc)
453 457 CTF_FLAGS_amd64 = $(CTF_FLAGS_i386)
454 458
455 459 # Sun Studio produces broken userland code when saving arguments.
456 460 $(__GNUC)CTF_FLAGS_amd64 += $(SAVEARGS)
457 461
458 462 CTF_FLAGS_32 = $(CTF_FLAGS_$(MACH)) $(DEBUGFORMAT)
459 463 CTF_FLAGS_64 = $(CTF_FLAGS_$(MACH64)) $(DEBUGFORMAT)
460 464 CTF_FLAGS = $(CTF_FLAGS_32)
461 465
462 466 #
463 467 # Flags used with genoffsets
464 468 #
465 469 GOFLAGS = -_noecho \
466 470 $(CALLSYMS) \
467 471 $(CDWARFSTR)
468 472
469 473 OFFSETS_CREATE = $(GENOFFSETS) -s $(CTFSTABS) -r $(CTFCONVERT) \
470 474 $(CC) $(GOFLAGS) $(CFLAGS) $(CPPFLAGS)
471 475
472 476 OFFSETS_CREATE64 = $(GENOFFSETS) -s $(CTFSTABS) -r $(CTFCONVERT) \
473 477 $(CC) $(GOFLAGS) $(CFLAGS64) $(CPPFLAGS)
474 478
475 479 #
476 480 # tradeoff time for space (smaller is better)
477 481 #
478 482 sparc_SPACEFLAG = -xspace -W0,-Lt
479 483 sparcv9_SPACEFLAG = -xspace -W0,-Lt
480 484 i386_SPACEFLAG = -xspace
481 485 amd64_SPACEFLAG =
482 486
483 487 SPACEFLAG = $($(MACH)_SPACEFLAG)
484 488 SPACEFLAG64 = $($(MACH64)_SPACEFLAG)
485 489
486 490 #
487 491 # The Sun Studio 11 compiler has changed the behaviour of integer
488 492 # wrap arounds and so a flag is needed to use the legacy behaviour
489 493 # (without this flag panics/hangs could be exposed within the source).
490 494 #
491 495 sparc_IROPTFLAG = -W2,-xwrap_int
492 496 sparcv9_IROPTFLAG = -W2,-xwrap_int
493 497 i386_IROPTFLAG =
494 498 amd64_IROPTFLAG =
495 499
496 500 IROPTFLAG = $($(MACH)_IROPTFLAG)
497 501 IROPTFLAG64 = $($(MACH64)_IROPTFLAG)
498 502
499 503 sparc_XREGSFLAG = -xregs=no%appl
500 504 sparcv9_XREGSFLAG = -xregs=no%appl
501 505 i386_XREGSFLAG =
502 506 amd64_XREGSFLAG =
503 507
504 508 XREGSFLAG = $($(MACH)_XREGSFLAG)
505 509 XREGSFLAG64 = $($(MACH64)_XREGSFLAG)
506 510
507 511 # dmake SOURCEDEBUG=yes ... enables source-level debugging information, and
508 512 # avoids stripping it.
509 513 SOURCEDEBUG = $(POUND_SIGN)
510 514 SRCDBGBLD = $(SOURCEDEBUG:yes=)
511 515
512 516 #
513 517 # These variables are intended ONLY for use by developers to safely pass extra
514 518 # flags to the compilers without unintentionally overriding Makefile-set
515 519 # flags. They should NEVER be set to any value in a Makefile.
516 520 #
517 521 # They come last in the associated FLAGS variable such that they can
518 522 # explicitly override things if necessary, there are gaps in this, but it's
519 523 # the best we can manage.
520 524 #
521 525 CUSERFLAGS =
522 526 CUSERFLAGS64 = $(CUSERFLAGS)
523 527 CCUSERFLAGS =
524 528 CCUSERFLAGS64 = $(CCUSERFLAGS)
525 529
526 530 CSOURCEDEBUGFLAGS =
527 531 CCSOURCEDEBUGFLAGS =
528 532 $(SRCDBGBLD)CSOURCEDEBUGFLAGS = -g -xs
529 533 $(SRCDBGBLD)CCSOURCEDEBUGFLAGS = -g -xs
530 534
531 535 CFLAGS= $(COPTFLAG) $($(MACH)_CFLAGS) $(SPACEFLAG) $(CCMODE) \
532 536 $(ILDOFF) $(CERRWARN) $(C99MODE) $(CCUNBOUND) $(IROPTFLAG) \
533 537 $(CGLOBALSTATIC) $(CCNOAUTOINLINE) $(CSOURCEDEBUGFLAGS) \
534 538 $(CUSERFLAGS)
535 539 CFLAGS64= $(COPTFLAG64) $($(MACH64)_CFLAGS) $(SPACEFLAG64) $(CCMODE64) \
536 540 $(ILDOFF) $(CERRWARN) $(C99MODE) $(CCUNBOUND) $(IROPTFLAG64) \
537 541 $(CGLOBALSTATIC) $(CCNOAUTOINLINE) $(CSOURCEDEBUGFLAGS) \
538 542 $(CUSERFLAGS64)
539 543 #
540 544 # Flags that are used to build parts of the code that are subsequently
541 545 # run on the build machine (also known as the NATIVE_BUILD).
542 546 #
543 547 NATIVE_CFLAGS= $(COPTFLAG) $($(NATIVE_MACH)_CFLAGS) $(CCMODE) \
544 548 $(ILDOFF) $(CERRWARN) $(C99MODE) $($(NATIVE_MACH)_CCUNBOUND) \
545 549 $(IROPTFLAG) $(CGLOBALSTATIC) $(CCNOAUTOINLINE) \
546 550 $(CSOURCEDEBUGFLAGS) $(CUSERFLAGS)
547 551
548 552 DTEXTDOM=-DTEXT_DOMAIN=\"$(TEXT_DOMAIN)\" # For messaging.
549 553 DTS_ERRNO=-D_TS_ERRNO
550 554 CPPFLAGS.master=$(DTEXTDOM) $(DTS_ERRNO) \
551 555 $(ENVCPPFLAGS1) $(ENVCPPFLAGS2) $(ENVCPPFLAGS3) $(ENVCPPFLAGS4) \
552 556 $(ADJUNCT_PROTO:%=-I%/usr/include)
553 557 CPPFLAGS.native=$(ENVCPPFLAGS1) $(ENVCPPFLAGS2) $(ENVCPPFLAGS3) \
554 558 $(ENVCPPFLAGS4) -I$(NATIVE_ADJUNCT)/include
555 559 CPPFLAGS= $(CPPFLAGS.master)
556 560 AS_CPPFLAGS= $(CPPFLAGS.master)
557 561 JAVAFLAGS= -deprecation
558 562
559 563 #
560 564 # For source message catalogue
561 565 #
562 566 .SUFFIXES: $(SUFFIXES) .i .po
563 567 MSGROOT= $(ROOT)/catalog
564 568 MSGDOMAIN= $(MSGROOT)/$(TEXT_DOMAIN)
565 569 MSGDOMAINPOFILE = $(MSGDOMAIN)/$(POFILE)
566 570 DCMSGDOMAIN= $(MSGROOT)/LC_TIME/$(TEXT_DOMAIN)
567 571 DCMSGDOMAINPOFILE = $(DCMSGDOMAIN)/$(DCFILE:.dc=.po)
568 572
569 573 CLOBBERFILES += $(POFILE) $(POFILES)
570 574 COMPILE.cpp= $(CC) -E -C $(CFLAGS) $(CPPFLAGS)
571 575 XGETTEXT= /usr/bin/xgettext
572 576 XGETFLAGS= -c TRANSLATION_NOTE
573 577 GNUXGETTEXT= /usr/gnu/bin/xgettext
574 578 GNUXGETFLAGS= --add-comments=TRANSLATION_NOTE --keyword=_ \
575 579 --strict --no-location --omit-header
576 580 BUILD.po= $(XGETTEXT) $(XGETFLAGS) -d $(<F) $<.i ;\
577 581 $(RM) $@ ;\
578 582 $(SED) "/^domain/d" < $(<F).po > $@ ;\
579 583 $(RM) $(<F).po $<.i
580 584
581 585 #
582 586 # This is overwritten by local Makefile when PROG is a list.
583 587 #
584 588 POFILE= $(PROG).po
585 589
586 590 sparc_CCFLAGS= -cg92 -compat=4 \
587 591 -Qoption ccfe -messages=no%anachronism \
588 592 $(CCERRWARN)
589 593 sparcv9_CCFLAGS= $(sparcv9_XARCH) -dalign -compat=5 \
590 594 -Qoption ccfe -messages=no%anachronism \
591 595 -Qoption ccfe -features=no%conststrings \
592 596 $(CCCREGSYM) \
593 597 $(CCERRWARN)
594 598 i386_CCFLAGS= -compat=4 \
595 599 -Qoption ccfe -messages=no%anachronism \
596 600 -Qoption ccfe -features=no%conststrings \
597 601 $(CCERRWARN)
598 602 amd64_CCFLAGS= $(amd64_XARCH) -compat=5 \
599 603 -Qoption ccfe -messages=no%anachronism \
600 604 -Qoption ccfe -features=no%conststrings \
601 605 $(CCERRWARN)
602 606
603 607 sparc_CCOPTFLAG= -O
604 608 sparcv9_CCOPTFLAG= -O
605 609 i386_CCOPTFLAG= -O
606 610 amd64_CCOPTFLAG= -O
607 611
608 612 CCOPTFLAG= $($(MACH)_CCOPTFLAG)
609 613 CCOPTFLAG64= $($(MACH64)_CCOPTFLAG)
610 614 CCFLAGS= $(CCOPTFLAG) $($(MACH)_CCFLAGS) $(CCSOURCEDEBUGFLAGS) \
611 615 $(CCUSERFLAGS)
612 616 CCFLAGS64= $(CCOPTFLAG64) $($(MACH64)_CCFLAGS) $(CCSOURCEDEBUGFLAGS) \
613 617 $(CCUSERFLAGS64)
614 618
615 619 #
616 620 #
617 621 #
618 622 ELFWRAP_FLAGS =
619 623 ELFWRAP_FLAGS64 = -64
620 624
621 625 #
622 626 # Various mapfiles that are used throughout the build, and delivered to
623 627 # /usr/lib/ld.
624 628 #
625 629 MAPFILE.NED_i386 = $(SRC)/common/mapfiles/common/map.noexdata
626 630 MAPFILE.NED_sparc =
627 631 MAPFILE.NED = $(MAPFILE.NED_$(MACH))
628 632 MAPFILE.PGA = $(SRC)/common/mapfiles/common/map.pagealign
629 633 MAPFILE.NES = $(SRC)/common/mapfiles/common/map.noexstk
630 634 MAPFILE.FLT = $(SRC)/common/mapfiles/common/map.filter
631 635 MAPFILE.LEX = $(SRC)/common/mapfiles/common/map.lex.yy
632 636
633 637 #
634 638 # Generated mapfiles that are compiler specific, and used throughout the
635 639 # build. These mapfiles are not delivered in /usr/lib/ld.
636 640 #
637 641 MAPFILE.NGB_sparc= $(SRC)/common/mapfiles/gen/sparc_cc_map.noexeglobs
638 642 $(__GNUC64)MAPFILE.NGB_sparc= \
639 643 $(SRC)/common/mapfiles/gen/sparc_gcc_map.noexeglobs
640 644 MAPFILE.NGB_sparcv9= $(SRC)/common/mapfiles/gen/sparcv9_cc_map.noexeglobs
641 645 $(__GNUC64)MAPFILE.NGB_sparcv9= \
642 646 $(SRC)/common/mapfiles/gen/sparcv9_gcc_map.noexeglobs
643 647 MAPFILE.NGB_i386= $(SRC)/common/mapfiles/gen/i386_cc_map.noexeglobs
644 648 $(__GNUC64)MAPFILE.NGB_i386= \
645 649 $(SRC)/common/mapfiles/gen/i386_gcc_map.noexeglobs
646 650 MAPFILE.NGB_amd64= $(SRC)/common/mapfiles/gen/amd64_cc_map.noexeglobs
647 651 $(__GNUC64)MAPFILE.NGB_amd64= \
648 652 $(SRC)/common/mapfiles/gen/amd64_gcc_map.noexeglobs
649 653 MAPFILE.NGB = $(MAPFILE.NGB_$(MACH))
650 654
651 655 #
652 656 # A generic interface mapfile name, used by various dynamic objects to define
653 657 # the interfaces and interposers the object must export.
654 658 #
655 659 MAPFILE.INT = mapfile-intf
656 660
657 661 #
658 662 # LDLIBS32 can be set in the environment to override the following assignment.
659 663 # LDLIBS64 can be set to override the assignment made in Makefile.master.64.
660 664 # These environment settings make sure that no libraries are searched outside
661 665 # of the local workspace proto area:
662 666 # LDLIBS32=-YP,$ROOT/lib:$ROOT/usr/lib
663 667 # LDLIBS64=-YP,$ROOT/lib/$MACH64:$ROOT/usr/lib/$MACH64
664 668 #
665 669 LDLIBS32 = $(ENVLDLIBS1) $(ENVLDLIBS2) $(ENVLDLIBS3)
666 670 LDLIBS32 += $(ADJUNCT_PROTO:%=-L%/usr/lib -L%/lib)
667 671 LDLIBS.cmd = $(LDLIBS32)
668 672 LDLIBS.lib = $(LDLIBS32)
669 673 #
670 674 # Define compilation macros.
671 675 #
672 676 COMPILE.c= $(CC) $(CFLAGS) $(CPPFLAGS) -c
673 677 COMPILE64.c= $(CC) $(CFLAGS64) $(CPPFLAGS) -c
674 678 COMPILE.cc= $(CCC) $(CCFLAGS) $(CPPFLAGS) -c
675 679 COMPILE64.cc= $(CCC) $(CCFLAGS64) $(CPPFLAGS) -c
676 680 COMPILE.s= $(AS) $(ASFLAGS) $(AS_CPPFLAGS)
677 681 COMPILE64.s= $(AS) $(ASFLAGS) $($(MACH64)_AS_XARCH) $(AS_CPPFLAGS)
678 682 COMPILE.d= $(DTRACE) -G -32
679 683 COMPILE64.d= $(DTRACE) -G -64
680 684 COMPILE.b= $(ELFWRAP) $(ELFWRAP_FLAGS$(CLASS))
681 685 COMPILE64.b= $(ELFWRAP) $(ELFWRAP_FLAGS$(CLASS))
682 686
683 687 CLASSPATH= .
684 688 COMPILE.java= $(JAVAC) $(JAVAFLAGS) -classpath $(CLASSPATH)
685 689
686 690 #
687 691 # Link time macros
688 692 #
689 693 CCNEEDED = -lC
690 694 CCEXTNEEDED = -lCrun -lCstd
691 695 $(__GNUC)CCNEEDED = -L$(GCCLIBDIR) -lstdc++ -lgcc_s
692 696 $(__GNUC)CCEXTNEEDED = $(CCNEEDED)
693 697
694 698 LINK.c= $(CC) $(CFLAGS) $(CPPFLAGS) $(LDFLAGS)
695 699 LINK64.c= $(CC) $(CFLAGS64) $(CPPFLAGS) $(LDFLAGS)
696 700 NORUNPATH= -norunpath -nolib
697 701 LINK.cc= $(CCC) $(CCFLAGS) $(CPPFLAGS) $(NORUNPATH) \
698 702 $(LDFLAGS) $(CCNEEDED)
699 703 LINK64.cc= $(CCC) $(CCFLAGS64) $(CPPFLAGS) $(NORUNPATH) \
700 704 $(LDFLAGS) $(CCNEEDED)
701 705
702 706 #
703 707 # lint macros
704 708 #
705 709 # Note that the undefine of __PRAGMA_REDEFINE_EXTNAME can be removed once
706 710 # ON is built with a version of lint that has the fix for 4484186.
707 711 #
708 712 ALWAYS_LINT_DEFS = -errtags=yes -s
709 713 ALWAYS_LINT_DEFS += -erroff=E_PTRDIFF_OVERFLOW
710 714 ALWAYS_LINT_DEFS += -erroff=E_ASSIGN_NARROW_CONV
711 715 ALWAYS_LINT_DEFS += -U__PRAGMA_REDEFINE_EXTNAME
712 716 ALWAYS_LINT_DEFS += $(C99LMODE)
713 717 ALWAYS_LINT_DEFS += -errsecurity=$(SECLEVEL)
714 718 ALWAYS_LINT_DEFS += -erroff=E_SEC_CREAT_WITHOUT_EXCL
715 719 ALWAYS_LINT_DEFS += -erroff=E_SEC_FORBIDDEN_WARN_CREAT
716 720 # XX64 -- really only needed for amd64 lint
717 721 ALWAYS_LINT_DEFS += -erroff=E_ASSIGN_INT_TO_SMALL_INT
718 722 ALWAYS_LINT_DEFS += -erroff=E_CAST_INT_CONST_TO_SMALL_INT
719 723 ALWAYS_LINT_DEFS += -erroff=E_CAST_INT_TO_SMALL_INT
720 724 ALWAYS_LINT_DEFS += -erroff=E_CAST_TO_PTR_FROM_INT
721 725 ALWAYS_LINT_DEFS += -erroff=E_COMP_INT_WITH_LARGE_INT
722 726 ALWAYS_LINT_DEFS += -erroff=E_INTEGRAL_CONST_EXP_EXPECTED
723 727 ALWAYS_LINT_DEFS += -erroff=E_PASS_INT_TO_SMALL_INT
724 728 ALWAYS_LINT_DEFS += -erroff=E_PTR_CONV_LOSES_BITS
725 729
726 730 # This forces lint to pick up note.h and sys/note.h from Devpro rather than
727 731 # from the proto area. The note.h that ON delivers would disable NOTE().
728 732 ONLY_LINT_DEFS = -I$(SPRO_VROOT)/prod/include/lint
729 733
730 734 SECLEVEL= core
731 735 LINT.c= $(LINT) $(ONLY_LINT_DEFS) $(LINTFLAGS) $(CPPFLAGS) \
732 736 $(ALWAYS_LINT_DEFS)
733 737 LINT64.c= $(LINT) $(ONLY_LINT_DEFS) $(LINTFLAGS64) $(CPPFLAGS) \
734 738 $(ALWAYS_LINT_DEFS)
735 739 LINT.s= $(LINT.c)
736 740
737 741 # For some future builds, NATIVE_MACH and MACH might be different.
738 742 # Therefore, NATIVE_MACH needs to be redefined in the
739 743 # environment as `uname -p` to override this macro.
740 744 #
741 745 # For now at least, we cross-compile amd64 on i386 machines.
742 746 NATIVE_MACH= $(MACH:amd64=i386)
743 747
744 748 # Define native compilation macros
745 749 #
746 750
747 751 # Base directory where compilers are loaded.
748 752 # Defined here so it can be overridden by developer.
749 753 #
750 754 SPRO_ROOT= $(BUILD_TOOLS)/SUNWspro
751 755 SPRO_VROOT= $(SPRO_ROOT)/SS12
752 756 GNU_ROOT= $(SFW_ROOT)
753 757
754 758 # Till SS12u1 formally becomes the NV CBE, LINT is hard
755 759 # coded to be picked up from the $SPRO_ROOT/sunstudio12.1/
756 760 # location. Impacted variables are sparc_LINT, sparcv9_LINT,
757 761 # i386_LINT, amd64_LINT.
758 762 # Reset them when SS12u1 is rolled out.
759 763 #
760 764
761 765 # Specify platform compiler versions for languages
762 766 # that we use (currently only c and c++).
763 767 #
764 768 sparc_CC= $(ONBLD_TOOLS)/bin/$(MACH)/cw -_cc
765 769 $(__GNUC)sparc_CC= $(ONBLD_TOOLS)/bin/$(MACH)/cw -_gcc
766 770 sparc_CCC= $(ONBLD_TOOLS)/bin/$(MACH)/cw -_CC
767 771 $(__GNUC)sparc_CCC= $(ONBLD_TOOLS)/bin/$(MACH)/cw -_g++
768 772 sparc_CPP= /usr/ccs/lib/cpp
769 773 sparc_AS= /usr/ccs/bin/as -xregsym=no
770 774 sparc_LD= /usr/ccs/bin/ld
771 775 sparc_LINT= $(SPRO_ROOT)/sunstudio12.1/bin/lint
772 776
773 777 sparcv9_CC= $(ONBLD_TOOLS)/bin/$(MACH)/cw -_cc
774 778 $(__GNUC64)sparcv9_CC= $(ONBLD_TOOLS)/bin/$(MACH)/cw -_gcc
775 779 sparcv9_CCC= $(ONBLD_TOOLS)/bin/$(MACH)/cw -_CC
776 780 $(__GNUC64)sparcv9_CCC= $(ONBLD_TOOLS)/bin/$(MACH)/cw -_g++
777 781 sparcv9_CPP= /usr/ccs/lib/cpp
778 782 sparcv9_AS= /usr/ccs/bin/as -xregsym=no
779 783 sparcv9_LD= /usr/ccs/bin/ld
780 784 sparcv9_LINT= $(SPRO_ROOT)/sunstudio12.1/bin/lint
781 785
782 786 i386_CC= $(ONBLD_TOOLS)/bin/$(MACH)/cw -_cc
783 787 $(__GNUC)i386_CC= $(ONBLD_TOOLS)/bin/$(MACH)/cw -_gcc
784 788 i386_CCC= $(ONBLD_TOOLS)/bin/$(MACH)/cw -_CC
785 789 $(__GNUC)i386_CCC= $(ONBLD_TOOLS)/bin/$(MACH)/cw -_g++
786 790 i386_CPP= /usr/ccs/lib/cpp
787 791 i386_AS= /usr/ccs/bin/as
788 792 $(__GNUC)i386_AS= $(ONBLD_TOOLS)/bin/$(MACH)/aw
789 793 i386_LD= /usr/ccs/bin/ld
790 794 i386_LINT= $(SPRO_ROOT)/sunstudio12.1/bin/lint
791 795
792 796 amd64_CC= $(ONBLD_TOOLS)/bin/$(MACH)/cw -_cc
793 797 $(__GNUC64)amd64_CC= $(ONBLD_TOOLS)/bin/$(MACH)/cw -_gcc
794 798 amd64_CCC= $(ONBLD_TOOLS)/bin/$(MACH)/cw -_CC
795 799 $(__GNUC64)amd64_CCC= $(ONBLD_TOOLS)/bin/$(MACH)/cw -_g++
796 800 amd64_CPP= /usr/ccs/lib/cpp
797 801 amd64_AS= $(ONBLD_TOOLS)/bin/$(MACH)/aw
798 802 amd64_LD= /usr/ccs/bin/ld
799 803 amd64_LINT= $(SPRO_ROOT)/sunstudio12.1/bin/lint
800 804
801 805 NATIVECC= $($(NATIVE_MACH)_CC)
802 806 NATIVECCC= $($(NATIVE_MACH)_CCC)
803 807 NATIVECPP= $($(NATIVE_MACH)_CPP)
804 808 NATIVEAS= $($(NATIVE_MACH)_AS)
805 809 NATIVELD= $($(NATIVE_MACH)_LD)
806 810 NATIVELINT= $($(NATIVE_MACH)_LINT)
807 811
808 812 #
809 813 # Makefile.master.64 overrides these settings
810 814 #
811 815 CC= $(NATIVECC)
812 816 CCC= $(NATIVECCC)
813 817 CPP= $(NATIVECPP)
814 818 AS= $(NATIVEAS)
815 819 LD= $(NATIVELD)
816 820 LINT= $(NATIVELINT)
817 821
818 822 # The real compilers used for this build
819 823 CW_CC_CMD= $(CC) -_compiler
820 824 CW_CCC_CMD= $(CCC) -_compiler
821 825 REAL_CC= $(CW_CC_CMD:sh)
822 826 REAL_CCC= $(CW_CCC_CMD:sh)
823 827
824 828 # Pass -Y flag to cpp (method of which is release-dependent)
825 829 CCYFLAG= -Y I,
826 830
827 831 BDIRECT= -Bdirect
828 832 BDYNAMIC= -Bdynamic
829 833 BLOCAL= -Blocal
830 834 BNODIRECT= -Bnodirect
831 835 BREDUCE= -Breduce
832 836 BSTATIC= -Bstatic
833 837
834 838 ZDEFS= -zdefs
835 839 ZDIRECT= -zdirect
836 840 ZIGNORE= -zignore
837 841 ZINITFIRST= -zinitfirst
838 842 ZINTERPOSE= -zinterpose
839 843 ZLAZYLOAD= -zlazyload
840 844 ZLOADFLTR= -zloadfltr
841 845 ZMULDEFS= -zmuldefs
842 846 ZNODEFAULTLIB= -znodefaultlib
843 847 ZNODEFS= -znodefs
844 848 ZNODELETE= -znodelete
845 849 ZNODLOPEN= -znodlopen
846 850 ZNODUMP= -znodump
847 851 ZNOLAZYLOAD= -znolazyload
848 852 ZNOLDYNSYM= -znoldynsym
849 853 ZNORELOC= -znoreloc
850 854 ZNOVERSION= -znoversion
851 855 ZRECORD= -zrecord
852 856 ZREDLOCSYM= -zredlocsym
853 857 ZTEXT= -ztext
854 858 ZVERBOSE= -zverbose
855 859
856 860 GSHARED= -G
857 861 CCMT= -mt
858 862
859 863 # Handle different PIC models on different ISAs
860 864 # (May be overridden by lower-level Makefiles)
861 865
862 866 sparc_C_PICFLAGS = -K pic
863 867 sparcv9_C_PICFLAGS = -K pic
864 868 i386_C_PICFLAGS = -K pic
865 869 amd64_C_PICFLAGS = -K pic
866 870 C_PICFLAGS = $($(MACH)_C_PICFLAGS)
867 871 C_PICFLAGS64 = $($(MACH64)_C_PICFLAGS)
868 872
869 873 sparc_C_BIGPICFLAGS = -K PIC
870 874 sparcv9_C_BIGPICFLAGS = -K PIC
871 875 i386_C_BIGPICFLAGS = -K PIC
872 876 amd64_C_BIGPICFLAGS = -K PIC
873 877 C_BIGPICFLAGS = $($(MACH)_C_BIGPICFLAGS)
874 878 C_BIGPICFLAGS64 = $($(MACH64)_C_BIGPICFLAGS)
875 879
876 880 # CC requires there to be no space between '-K' and 'pic' or 'PIC'.
877 881 sparc_CC_PICFLAGS = -Kpic
878 882 sparcv9_CC_PICFLAGS = -KPIC
879 883 i386_CC_PICFLAGS = -Kpic
880 884 amd64_CC_PICFLAGS = -Kpic
881 885 CC_PICFLAGS = $($(MACH)_CC_PICFLAGS)
882 886 CC_PICFLAGS64 = $($(MACH64)_CC_PICFLAGS)
883 887
884 888 AS_PICFLAGS= $(C_PICFLAGS)
885 889 AS_BIGPICFLAGS= $(C_BIGPICFLAGS)
886 890
887 891 #
888 892 # Default label for CTF sections
889 893 #
890 894 CTFCVTFLAGS= -i -L VERSION
891 895 $(SRCDBGBLD)CTFCVTFLAGS += -g
892 896
893 897 #
894 898 # Override to pass module-specific flags to ctfmerge. Currently used only by
895 899 # krtld to turn on fuzzy matching, and source-level debugging to inhibit
896 900 # stripping.
897 901 #
898 902 CTFMRGFLAGS=
899 903 $(SRCDBGBLD)CTFMRGFLAGS += -g
900 904
901 905
902 906 CTFCONVERT_O = $(CTFCONVERT) $(CTFCVTFLAGS) $@
903 907
904 908 ELFSIGN_O= $(TRUE)
905 909 ELFSIGN_CRYPTO= $(ELFSIGN_O)
906 910 ELFSIGN_OBJECT= $(ELFSIGN_O)
907 911
908 912 # Rules (normally from make.rules) and macros which are used for post
909 913 # processing files. Normally, these do stripping of the comment section
910 914 # automatically.
911 915 # RELEASE_CM: Should be editted to reflect the release.
912 916 # POST_PROCESS_O: Post-processing for `.o' files.
913 917 # POST_PROCESS_A: Post-processing for `.a' files (currently null).
914 918 # POST_PROCESS_SO: Post-processing for `.so' files.
915 919 # POST_PROCESS: Post-processing for executable files (no suffix).
916 920 # Note that these macros are not completely generalized as they are to be
917 921 # used with the file name to be processed following.
918 922 #
919 923 # It is left as an exercise to Release Engineering to embellish the generation
920 924 # of the release comment string.
921 925 #
922 926 # If this is a standard development build:
923 927 # compress the comment section (mcs -c)
924 928 # add the standard comment (mcs -a $(RELEASE_CM))
925 929 # add the development specific comment (mcs -a $(DEV_CM))
926 930 #
927 931 # If this is an installation build:
928 932 # delete the comment section (mcs -d)
929 933 # add the standard comment (mcs -a $(RELEASE_CM))
930 934 # add the development specific comment (mcs -a $(DEV_CM))
931 935 #
932 936 # If this is an release build:
933 937 # delete the comment section (mcs -d)
934 938 # add the standard comment (mcs -a $(RELEASE_CM))
935 939 #
936 940 # The following list of macros are used in the definition of RELEASE_CM
937 941 # which is used to label all binaries in the build:
938 942 #
939 943 # RELEASE Specific release of the build, eg: 5.2
940 944 # RELEASE_MAJOR Major version number part of $(RELEASE)
941 945 # RELEASE_MINOR Minor version number part of $(RELEASE)
942 946 # VERSION Version of the build (alpha, beta, Generic)
943 947 # PATCHID If this is a patch this value should contain
944 948 # the patchid value (eg: "Generic 100832-01"), otherwise
945 949 # it will be set to $(VERSION)
946 950 # RELEASE_DATE Date of the Release Build
947 951 # PATCH_DATE Date the patch was created, if this is blank it
948 952 # will default to the RELEASE_DATE
949 953 #
950 954 RELEASE_MAJOR= 5
951 955 RELEASE_MINOR= 11
952 956 RELEASE= $(RELEASE_MAJOR).$(RELEASE_MINOR)
953 957 VERSION= SunOS Development
954 958 PATCHID= $(VERSION)
955 959 RELEASE_DATE= release date not set
956 960 PATCH_DATE= $(RELEASE_DATE)
957 961 RELEASE_CM= "@($(POUND_SIGN))SunOS $(RELEASE) $(PATCHID) $(PATCH_DATE)"
958 962 DEV_CM= "@($(POUND_SIGN))SunOS Internal Development: non-nightly build"
959 963
960 964 PROCESS_COMMENT= @?${MCS} -d -a $(RELEASE_CM) -a $(DEV_CM)
961 965 $(RELEASE_BUILD)PROCESS_COMMENT= @?${MCS} -d -a $(RELEASE_CM)
962 966
963 967 STRIP_STABS= :
964 968 $(RELEASE_BUILD)STRIP_STABS= $(STRIP) -x $@
965 969 $(SRCDBGBLD)STRIP_STABS= :
966 970
967 971 POST_PROCESS_O= $(PROCESS_COMMENT) $@
968 972 POST_PROCESS_A=
969 973 POST_PROCESS_SO= $(PROCESS_COMMENT) $@ ; $(STRIP_STABS) ; \
970 974 $(ELFSIGN_OBJECT)
971 975 POST_PROCESS= $(PROCESS_COMMENT) $@ ; $(STRIP_STABS) ; \
972 976 $(ELFSIGN_OBJECT)
973 977
974 978 #
975 979 # chk4ubin is a tool that inspects a module for a symbol table
976 980 # ELF section size which can trigger an OBP bug on older platforms.
977 981 # This problem affects only specific sun4u bootable modules.
978 982 #
979 983 CHK4UBIN= $(ONBLD_TOOLS)/bin/$(MACH)/chk4ubin
980 984 CHK4UBINFLAGS=
981 985 CHK4UBINARY= $(CHK4UBIN) $(CHK4UBINFLAGS) $@
982 986
983 987 #
984 988 # PKGARCHIVE specifies the default location where packages should be
985 989 # placed if built.
986 990 #
987 991 $(RELEASE_BUILD)PKGARCHIVESUFFIX= -nd
988 992 PKGARCHIVE=$(SRC)/../../packages/$(MACH)/nightly$(PKGARCHIVESUFFIX)
989 993
990 994 #
991 995 # The repositories will be created with these publisher settings. To
992 996 # update an image to the resulting repositories, this must match the
993 997 # publisher name provided to "pkg set-publisher."
994 998 #
995 999 PKGPUBLISHER_REDIST= on-nightly
996 1000 PKGPUBLISHER_NONREDIST= on-extra
997 1001
998 1002 # Default build rules which perform comment section post-processing.
999 1003 #
1000 1004 .c:
1001 1005 $(LINK.c) -o $@ $< $(LDLIBS)
1002 1006 $(POST_PROCESS)
1003 1007 .c.o:
1004 1008 $(COMPILE.c) $(OUTPUT_OPTION) $< $(CTFCONVERT_HOOK)
1005 1009 $(POST_PROCESS_O)
1006 1010 .c.a:
1007 1011 $(COMPILE.c) -o $% $<
1008 1012 $(PROCESS_COMMENT) $%
1009 1013 $(AR) $(ARFLAGS) $@ $%
1010 1014 $(RM) $%
1011 1015 .s.o:
1012 1016 $(COMPILE.s) -o $@ $<
1013 1017 $(POST_PROCESS_O)
1014 1018 .s.a:
1015 1019 $(COMPILE.s) -o $% $<
1016 1020 $(PROCESS_COMMENT) $%
1017 1021 $(AR) $(ARFLAGS) $@ $%
1018 1022 $(RM) $%
1019 1023 .cc:
1020 1024 $(LINK.cc) -o $@ $< $(LDLIBS)
1021 1025 $(POST_PROCESS)
1022 1026 .cc.o:
1023 1027 $(COMPILE.cc) $(OUTPUT_OPTION) $<
1024 1028 $(POST_PROCESS_O)
1025 1029 .cc.a:
1026 1030 $(COMPILE.cc) -o $% $<
1027 1031 $(AR) $(ARFLAGS) $@ $%
1028 1032 $(PROCESS_COMMENT) $%
1029 1033 $(RM) $%
1030 1034 .y:
1031 1035 $(YACC.y) $<
1032 1036 $(LINK.c) -o $@ y.tab.c $(LDLIBS)
1033 1037 $(POST_PROCESS)
1034 1038 $(RM) y.tab.c
1035 1039 .y.o:
1036 1040 $(YACC.y) $<
1037 1041 $(COMPILE.c) -o $@ y.tab.c $(CTFCONVERT_HOOK)
1038 1042 $(POST_PROCESS_O)
1039 1043 $(RM) y.tab.c
1040 1044 .l:
1041 1045 $(RM) $*.c
1042 1046 $(LEX.l) $< > $*.c
1043 1047 $(LINK.c) -o $@ $*.c -ll $(LDLIBS)
1044 1048 $(POST_PROCESS)
1045 1049 $(RM) $*.c
1046 1050 .l.o:
1047 1051 $(RM) $*.c
1048 1052 $(LEX.l) $< > $*.c
1049 1053 $(COMPILE.c) -o $@ $*.c $(CTFCONVERT_HOOK)
1050 1054 $(POST_PROCESS_O)
1051 1055 $(RM) $*.c
1052 1056
1053 1057 .bin.o:
1054 1058 $(COMPILE.b) -o $@ $<
1055 1059 $(POST_PROCESS_O)
1056 1060
1057 1061 .java.class:
1058 1062 $(COMPILE.java) $<
1059 1063
1060 1064 # Bourne and Korn shell script message catalog build rules.
1061 1065 # We extract all gettext strings with sed(1) (being careful to permit
1062 1066 # multiple gettext strings on the same line), weed out the dups, and
1063 1067 # build the catalogue with awk(1).
1064 1068
1065 1069 .sh.po .ksh.po:
1066 1070 $(SED) -n -e ":a" \
1067 1071 -e "h" \
1068 1072 -e "s/.*gettext *\(\"[^\"]*\"\).*/\1/p" \
1069 1073 -e "x" \
1070 1074 -e "s/\(.*\)gettext *\"[^\"]*\"\(.*\)/\1\2/" \
1071 1075 -e "t a" \
1072 1076 $< | sort -u | awk '{ print "msgid\t" $$0 "\nmsgstr" }' > $@
1073 1077
1074 1078 #
1075 1079 # Python and Perl executable and message catalog build rules.
1076 1080 #
1077 1081 .SUFFIXES: .pl .pm .py .pyc
1078 1082
1079 1083 .pl:
1080 1084 $(RM) $@;
1081 1085 $(SED) -e "s@TEXT_DOMAIN@\"$(TEXT_DOMAIN)\"@" $< > $@;
1082 1086 $(CHMOD) +x $@
1083 1087
1084 1088 .py:
1085 1089 $(RM) $@; $(CAT) $< > $@; $(CHMOD) +x $@
1086 1090
1087 1091 .py.pyc:
1088 1092 $(RM) $@
1089 1093 $(PYTHON) -mpy_compile $<
1090 1094 @[ $(<)c = $@ ] || $(MV) $(<)c $@
1091 1095
1092 1096 .py.po:
1093 1097 $(GNUXGETTEXT) $(GNUXGETFLAGS) -d $(<F:%.py=%) $< ;
1094 1098
1095 1099 .pl.po .pm.po:
1096 1100 $(XGETTEXT) $(XGETFLAGS) -d $(<F) $< ;
1097 1101 $(RM) $@ ;
1098 1102 $(SED) "/^domain/d" < $(<F).po > $@ ;
1099 1103 $(RM) $(<F).po
1100 1104
1101 1105 #
1102 1106 # When using xgettext, we want messages to go to the default domain,
1103 1107 # rather than the specified one. This special version of the
1104 1108 # COMPILE.cpp macro effectively prevents expansion of TEXT_DOMAIN,
1105 1109 # causing xgettext to put all messages into the default domain.
1106 1110 #
1107 1111 CPPFORPO=$(COMPILE.cpp:\"$(TEXT_DOMAIN)\"=TEXT_DOMAIN)
1108 1112
1109 1113 .c.i:
1110 1114 $(CPPFORPO) $< > $@
1111 1115
1112 1116 .h.i:
1113 1117 $(CPPFORPO) $< > $@
1114 1118
1115 1119 .y.i:
1116 1120 $(YACC) -d $<
1117 1121 $(CPPFORPO) y.tab.c > $@
1118 1122 $(RM) y.tab.c
1119 1123
1120 1124 .l.i:
1121 1125 $(LEX) $<
1122 1126 $(CPPFORPO) lex.yy.c > $@
1123 1127 $(RM) lex.yy.c
1124 1128
1125 1129 .c.po:
1126 1130 $(CPPFORPO) $< > $<.i
1127 1131 $(BUILD.po)
1128 1132
1129 1133 .y.po:
1130 1134 $(YACC) -d $<
1131 1135 $(CPPFORPO) y.tab.c > $<.i
1132 1136 $(BUILD.po)
1133 1137 $(RM) y.tab.c
1134 1138
1135 1139 .l.po:
1136 1140 $(LEX) $<
1137 1141 $(CPPFORPO) lex.yy.c > $<.i
1138 1142 $(BUILD.po)
1139 1143 $(RM) lex.yy.c
1140 1144
1141 1145 #
1142 1146 # Rules to perform stylistic checks
1143 1147 #
1144 1148 .SUFFIXES: .x .xml .check .xmlchk
1145 1149
1146 1150 .h.check:
1147 1151 $(DOT_H_CHECK)
1148 1152
1149 1153 .x.check:
1150 1154 $(DOT_X_CHECK)
1151 1155
1152 1156 .xml.xmlchk:
1153 1157 $(MANIFEST_CHECK)
1154 1158
1155 1159 #
1156 1160 # Include rules to render automated sccs get rules "safe".
1157 1161 #
1158 1162 include $(SRC)/Makefile.noget
↓ open down ↓ |
888 lines elided |
↑ open up ↑ |
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX