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