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