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