4 # The contents of this file are subject to the terms of the
5 # Common Development and Distribution License (the "License").
6 # You may not use this file except in compliance with the License.
8 # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 # or http://www.opensolaris.org/os/licensing.
10 # See the License for the specific language governing permissions
11 # and limitations under the License.
13 # When distributing Covered Code, include this CDDL HEADER in each
14 # file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 # If applicable, add the following below this CDDL HEADER, with the
16 # fields enclosed by brackets "[]" replaced with your own identifying
17 # information: Portions Copyright [yyyy] [name of copyright owner]
23 # Copyright (c) 1989, 2010, Oracle and/or its affiliates. All rights reserved.
24 # Copyright (c) 2012 by Delphix. All rights reserved.
25 # Copyright 2014 Garrett D'Amore <garrett@damore.org>
26 # Copyright 2015, OmniTI Computer Consulting, Inc. All rights reserved.
27 # Copyright 2015 Gary Mills
28 # Copyright 2015 Igor Kozhukhov <ikozhukhov@gmail.com>
32 # Makefile.master, global definitions for system source
37 # Adjunct root, containing an additional proto area to be used for headers
43 # Adjunct for building things that run on the build machine.
48 # RELEASE_BUILD should be cleared for final release builds.
49 # NOT_RELEASE_BUILD is exactly what the name implies.
51 # The declaration POUND_SIGN is always '#'. This is needed to get around the
52 # make feature that '#' is always a comment delimiter, even when escaped or
53 # quoted. We use this macro expansion method to get POUND_SIGN rather than
54 # always breaking out a shell because the general case can cause a noticable
55 # slowdown in build times when so many Makefiles include Makefile.master.
57 # While the majority of users are expected to override the setting below
58 # with an env file (via nightly or bldenv), if you aren't building that way
59 # (ie, you're using "ws" or some other bootstrapping method) then you need
60 # this definition in order to avoid the subshell invocation mentioned above.
64 POUND_SIGN= $(PRE_POUND:pre\%=%)
67 RELEASE_BUILD= $(POUND_SIGN)
68 $(RELEASE_BUILD)NOT_RELEASE_BUILD= $(POUND_SIGN)
69 PATCH_BUILD= $(POUND_SIGN)
71 # SPARC_BLD is '#' for an Intel build.
72 # INTEL_BLD is '#' for a Sparc build.
73 SPARC_BLD_1= $(MACH:i386=$(POUND_SIGN))
74 SPARC_BLD= $(SPARC_BLD_1:sparc=)
75 INTEL_BLD_1= $(MACH:sparc=$(POUND_SIGN))
76 INTEL_BLD= $(INTEL_BLD_1:i386=)
78 # Allow build-time "configuration" to enable or disable some things.
79 # The default is POUND_SIGN, meaning "not enabled". If the environment
80 # passes in an override like ENABLE_SMB_PRINTING= (empty) that will
81 # uncomment things in the lower Makefiles to enable the feature.
82 ENABLE_IPP_PRINTING= $(POUND_SIGN)
83 ENABLE_SMB_PRINTING= $(POUND_SIGN)
85 # CLOSED is the root of the tree that contains source which isn't released
87 CLOSED= $(SRC)/../closed
89 # BUILD_TOOLS is the root of all tools including compilers.
90 # ONBLD_TOOLS is the root of all the tools that are part of SUNWonbld.
92 BUILD_TOOLS= /ws/onnv-tools
93 ONBLD_TOOLS= $(BUILD_TOOLS)/onbld
95 # define runtime JAVA_HOME, primarily for cmd/pools/poold
97 # define buildtime JAVA_ROOT
100 GCC_ROOT= /opt/gcc/4.4.4
101 GCCLIBDIR= $(GCC_ROOT)/lib
102 GCCLIBDIR64= $(GCC_ROOT)/lib/$(MACH64)
104 DOCBOOK_XSL_ROOT= /usr/share/sgml/docbook/xsl-stylesheets
106 RPCGEN= /usr/bin/rpcgen
107 STABS= $(ONBLD_TOOLS)/bin/$(MACH)/stabs
108 ELFEXTRACT= $(ONBLD_TOOLS)/bin/$(MACH)/elfextract
109 MBH_PATCH= $(ONBLD_TOOLS)/bin/$(MACH)/mbh_patch
113 SYMLINK= /usr/bin/ln -s
115 CHMOD= /usr/bin/chmod
122 EGREP= /usr/bin/egrep
123 ELFWRAP= /usr/bin/elfwrap
124 KSH93= /usr/bin/ksh93
128 MCS= /usr/ccs/bin/mcs
130 ELFDUMP= /usr/ccs/bin/elfdump
132 STRIP= /usr/ccs/bin/strip
133 LEX= /usr/ccs/bin/lex
135 YACC= /usr/ccs/bin/yacc
137 JAVAC= $(JAVA_ROOT)/bin/javac
138 JAVAH= $(JAVA_ROOT)/bin/javah
139 JAVADOC= $(JAVA_ROOT)/bin/javadoc
140 RMIC= $(JAVA_ROOT)/bin/rmic
141 JAR= $(JAVA_ROOT)/bin/jar
142 CTFCONVERT= $(ONBLD_TOOLS)/bin/$(MACH)/ctfconvert
143 CTFMERGE= $(ONBLD_TOOLS)/bin/$(MACH)/ctfmerge
144 CTFSTABS= $(ONBLD_TOOLS)/bin/$(MACH)/ctfstabs
145 CTFSTRIP= $(ONBLD_TOOLS)/bin/$(MACH)/ctfstrip
146 NDRGEN= $(ONBLD_TOOLS)/bin/$(MACH)/ndrgen
147 GENOFFSETS= $(ONBLD_TOOLS)/bin/genoffsets
148 XREF= $(ONBLD_TOOLS)/bin/xref
153 PERL_ARCH = i86pc-solaris-64int
154 $(SPARC_BLD)PERL_ARCH = sun4-solaris-64int
155 PYTHON_26= /usr/bin/python2.6
158 TOUCH= /usr/bin/touch
160 XARGS= /usr/bin/xargs
161 ELFEDIT= /usr/bin/elfedit
162 ELFSIGN= /usr/bin/elfsign
163 DTRACE= /usr/sbin/dtrace -xnolibs
166 ASTBINDIR= /usr/ast/bin
167 MSGCC= $(ASTBINDIR)/msgcc
168 MSGFMT= /usr/bin/msgfmt -s
173 # Declare that nothing should be built in parallel.
174 # Individual Makefiles can use the .PARALLEL target to declare otherwise.
177 # For stylistic checks
179 # Note that the X and C checks are not used at this time and may need
180 # modification when they are actually used.
182 CSTYLE= $(ONBLD_TOOLS)/bin/cstyle
184 HDRCHK= $(ONBLD_TOOLS)/bin/hdrchk
186 JSTYLE= $(ONBLD_TOOLS)/bin/jstyle
189 @$(ECHO) "checking $<"; $(CSTYLE) $< $(CSTYLE_TAIL); \
190 $(HDRCHK) $< $(HDRCHK_TAIL)
193 @$(ECHO) "checking $<"; $(RPCGEN) -C -h $< | $(CSTYLE) $(CSTYLE_TAIL); \
194 $(RPCGEN) -C -h $< | $(HDRCHK) $< $(HDRCHK_TAIL)
197 @$(ECHO) "checking $<"; $(CSTYLE) $< $(CSTYLE_TAIL)
200 @$(ECHO) "checking $<"; \
201 SVCCFG_DTD=$(SRC)/cmd/svc/dtd/service_bundle.dtd.1 \
202 SVCCFG_REPOSITORY=$(SRC)/cmd/svc/seed/global.db \
203 SVCCFG_CONFIGD_PATH=$(SRC)/cmd/svc/configd/svc.configd-native \
204 $(SRC)/cmd/svc/svccfg/svccfg-native validate $<
206 INS.file= $(RM) $@; $(INS) -s -m $(FILEMODE) -f $(@D) $<
207 INS.dir= $(INS) -s -d -m $(DIRMODE) $@
208 # installs and renames at once
210 INS.rename= $(INS.file); $(MV) $(@D)/$(<F) $@
214 INS.link= $(RM) $@; $(LN) $(INSLINKTARGET) $@
215 INS.symlink= $(RM) $@; $(SYMLINK) $(INSLINKTARGET) $@
218 # Python bakes the mtime of the .py file into the compiled .pyc and
219 # rebuilds if the baked-in mtime != the mtime of the source file
220 # (rather than only if it's less than), thus when installing python
221 # files we must make certain to not adjust the mtime of the source
224 INS.pyfile= $(INS.file); $(TOUCH) -r $< $@
226 # MACH must be set in the shell environment per uname -p on the build host
227 # More specific architecture variables should be set in lower makefiles.
229 # MACH64 is derived from MACH, and BUILD64 is set to `#' for
230 # architectures on which we do not build 64-bit versions.
231 # (There are no such architectures at the moment.)
233 # Set BUILD64=# in the environment to disable 64-bit amd64
234 # builds on i386 machines.
236 MACH64_1= $(MACH:sparc=sparcv9)
237 MACH64= $(MACH64_1:i386=amd64)
239 MACH32_1= $(MACH:sparc=sparcv7)
240 MACH32= $(MACH32_1:i386=i86)
244 BUILD64= $($(MACH)_BUILD64)
247 # C compiler mode. Future compilers may change the default on us,
248 # so force extended ANSI mode globally. Lower level makefiles can
249 # override this by setting CCMODE.
255 # C compiler verbose mode. This is so we can enable it globally,
256 # but turn it off in the lower level makefiles of things we cannot
257 # (or aren't going to) fix.
261 # set this to the secret flag "-Wc,-Qiselect-v9abiwarn=1" to get warnings
262 # from the compiler about places the -xarch=v9 may differ from -xarch=v9c.
265 # set this to the secret flag "-Wc,-Qiselect-regsym=0" to disable register
266 # symbols (used to detect conflicts between objects that use global registers)
267 # we disable this now for safety, and because genunix doesn't link with
268 # this feature (the v9 default) enabled.
270 # REGSYM is separate since the C++ driver syntax is different.
271 CCREGSYM= -Wc,-Qiselect-regsym=0
272 CCCREGSYM= -Qoption cg -Qiselect-regsym=0
274 # Prevent the removal of static symbols by the SPARC code generator (cg).
275 # The x86 code generator (ube) does not remove such symbols and as such
276 # using this workaround is not applicable for x86.
278 CCSTATICSYM= -Wc,-Qassembler-ounrefsym=0
280 # generate 32-bit addresses in the v9 kernel. Saves memory.
281 CCABS32= -Wc,-xcode=abs32
283 # generate v9 code which tolerates callers using the v7 ABI, for the sake of
285 CC32BITCALLERS= -_gcc=-massume-32bit-callers
287 # GCC, especially, is increasingly beginning to auto-inline functions and
288 # sadly does so separately not under the general -fno-inline-functions
289 # Additionally, we wish to prevent optimisations which cause GCC to clone
290 # functions -- in particular, these may cause unhelpful symbols to be
291 # emitted instead of function names
292 CCNOAUTOINLINE= -_gcc=-fno-inline-small-functions \
293 -_gcc=-fno-inline-functions-called-once \
296 # One optimization the compiler might perform is to turn this:
303 # Since we do some of this (foo might be referenced in common kernel code
304 # but provided only for some cpu modules or platforms), we disable this
307 sparc_CCUNBOUND = -Wd,-xsafe=unboundsym
309 CCUNBOUND = $($(MACH)_CCUNBOUND)
312 # compiler '-xarch' flag. This is here to centralize it and make it
313 # overridable for testing.
316 i386_XARCH= -m32 -xarch=pentium_pro
317 amd64_XARCH= -m64 -Ui386 -U__i386
319 # assembler '-xarch' flag. Different from compiler '-xarch' flag.
320 sparc_AS_XARCH= -xarch=v8plus
321 sparcv9_AS_XARCH= -xarch=v9
323 amd64_AS_XARCH= -xarch=amd64 -P -Ui386 -U__i386
326 # These flags define what we need to be 'standalone' i.e. -not- part
327 # of the rather more cosy userland environment. This basically means
330 # XX64 future versions of gcc will make -mcmodel=kernel imply -mno-red-zone
332 sparc_STAND_FLAGS= -_gcc=-ffreestanding
333 sparcv9_STAND_FLAGS= -_gcc=-ffreestanding
334 # Disabling MMX also disables 3DNow, disabling SSE also disables all later
335 # additions to SSE (SSE2, AVX ,etc.)
336 NO_SIMD= -_gcc=-mno-mmx -_gcc=-mno-sse
337 i386_STAND_FLAGS= -_gcc=-ffreestanding $(NO_SIMD)
338 amd64_STAND_FLAGS= -xmodel=kernel $(NO_SIMD)
340 SAVEARGS= -Wu,-save_args
341 amd64_STAND_FLAGS += $(SAVEARGS)
343 STAND_FLAGS_32 = $($(MACH)_STAND_FLAGS)
344 STAND_FLAGS_64 = $($(MACH64)_STAND_FLAGS)
347 # disable the incremental linker
353 XSTRCONST= -xstrconst
356 # turn warnings into errors (C)
357 CERRWARN = -errtags=yes -errwarn=%all
358 CERRWARN += -erroff=E_EMPTY_TRANSLATION_UNIT
359 CERRWARN += -erroff=E_STATEMENT_NOT_REACHED
361 CERRWARN += -_gcc=-Wno-missing-braces
362 CERRWARN += -_gcc=-Wno-sign-compare
363 CERRWARN += -_gcc=-Wno-unknown-pragmas
364 CERRWARN += -_gcc=-Wno-unused-parameter
365 CERRWARN += -_gcc=-Wno-missing-field-initializers
367 # Unfortunately, this option can misfire very easily and unfixably.
368 CERRWARN += -_gcc=-Wno-array-bounds
370 # DEBUG v. -nd make for frequent unused variables, empty conditions, etc. in
372 $(RELEASE_BUILD)CERRWARN += -_gcc=-Wno-unused
373 $(RELEASE_BUILD)CERRWARN += -_gcc=-Wno-empty-body
376 # turn warnings into errors (C++)
380 C99_ENABLE= -xc99=%all
381 C99_DISABLE= -xc99=%none
382 C99MODE= $(C99_DISABLE)
383 C99LMODE= $(C99MODE:-xc99%=-Xc99%)
385 # In most places, assignments to these macros should be appended with +=
386 # (CPPFLAGS.first allows values to be prepended to CPPFLAGS).
387 sparc_CFLAGS= $(sparc_XARCH) $(CCSTATICSYM)
388 sparcv9_CFLAGS= $(sparcv9_XARCH) -dalign $(CCVERBOSE) $(V9ABIWARN) $(CCREGSYM) \
390 i386_CFLAGS= $(i386_XARCH)
391 amd64_CFLAGS= $(amd64_XARCH)
393 sparc_ASFLAGS= $(sparc_AS_XARCH)
394 sparcv9_ASFLAGS=$(sparcv9_AS_XARCH)
395 i386_ASFLAGS= $(i386_AS_XARCH)
396 amd64_ASFLAGS= $(amd64_AS_XARCH)
400 sparcv9_COPTFLAG= -xO3
404 COPTFLAG= $($(MACH)_COPTFLAG)
405 COPTFLAG64= $($(MACH64)_COPTFLAG)
407 # When -g is used, the compiler globalizes static objects
408 # (gives them a unique prefix). Disable that.
409 CNOGLOBAL= -W0,-noglobal
411 # Direct the Sun Studio compiler to use a static globalization prefix based on the
412 # name of the module rather than something unique. Otherwise, objects
413 # will not build deterministically, as subsequent compilations of identical
414 # source will yeild objects that always look different.
416 # In the same spirit, this will also remove the date from the N_OPT stab.
417 CGLOBALSTATIC= -W0,-xglobalstatic
419 # Sometimes we want all symbols and types in debugging information even
420 # if they aren't used.
421 CALLSYMS= -W0,-xdbggen=no%usedonly
424 # Default debug format for Sun Studio 11 is dwarf, so force it to
427 DEBUGFORMAT= -xdebugformat=stabs
430 # Flags used to build in debug mode for ctf generation. Bugs in the Devpro
431 # compilers currently prevent us from building with cc-emitted DWARF.
433 CTF_FLAGS_sparc = -g -Wc,-Qiselect-T1 $(C99MODE) $(CNOGLOBAL) $(CDWARFSTR)
434 CTF_FLAGS_i386 = -g $(C99MODE) $(CNOGLOBAL) $(CDWARFSTR)
436 CTF_FLAGS_sparcv9 = $(CTF_FLAGS_sparc)
437 CTF_FLAGS_amd64 = $(CTF_FLAGS_i386)
439 CTF_FLAGS_amd64 += $(SAVEARGS)
441 CTF_FLAGS_32 = $(CTF_FLAGS_$(MACH)) $(DEBUGFORMAT)
442 CTF_FLAGS_64 = $(CTF_FLAGS_$(MACH64)) $(DEBUGFORMAT)
443 CTF_FLAGS = $(CTF_FLAGS_32)
446 # Flags used with genoffsets
452 OFFSETS_CREATE = $(GENOFFSETS) -s $(CTFSTABS) -r $(CTFCONVERT) \
453 $(CC) $(GOFLAGS) $(CFLAGS) $(CPPFLAGS)
455 OFFSETS_CREATE64 = $(GENOFFSETS) -s $(CTFSTABS) -r $(CTFCONVERT) \
456 $(CC) $(GOFLAGS) $(CFLAGS64) $(CPPFLAGS)
459 # tradeoff time for space (smaller is better)
461 sparc_SPACEFLAG = -xspace -W0,-Lt
462 sparcv9_SPACEFLAG = -xspace -W0,-Lt
463 i386_SPACEFLAG = -xspace
466 SPACEFLAG = $($(MACH)_SPACEFLAG)
467 SPACEFLAG64 = $($(MACH64)_SPACEFLAG)
470 # The Sun Studio 11 compiler has changed the behaviour of integer
471 # wrap arounds and so a flag is needed to use the legacy behaviour
472 # (without this flag panics/hangs could be exposed within the source).
474 sparc_IROPTFLAG = -W2,-xwrap_int
475 sparcv9_IROPTFLAG = -W2,-xwrap_int
479 IROPTFLAG = $($(MACH)_IROPTFLAG)
480 IROPTFLAG64 = $($(MACH64)_IROPTFLAG)
482 sparc_XREGSFLAG = -xregs=no%appl
483 sparcv9_XREGSFLAG = -xregs=no%appl
487 XREGSFLAG = $($(MACH)_XREGSFLAG)
488 XREGSFLAG64 = $($(MACH64)_XREGSFLAG)
490 # dmake SOURCEDEBUG=yes ... enables source-level debugging information, and
491 # avoids stripping it.
492 SOURCEDEBUG = $(POUND_SIGN)
493 SRCDBGBLD = $(SOURCEDEBUG:yes=)
496 # These variables are intended ONLY for use by developers to safely pass extra
497 # flags to the compilers without unintentionally overriding Makefile-set
498 # flags. They should NEVER be set to any value in a Makefile.
500 # They come last in the associated FLAGS variable such that they can
501 # explicitly override things if necessary, there are gaps in this, but it's
502 # the best we can manage.
505 CUSERFLAGS64 = $(CUSERFLAGS)
507 CCUSERFLAGS64 = $(CCUSERFLAGS)
511 $(SRCDBGBLD)CSOURCEDEBUGFLAGS = -g -xs
512 $(SRCDBGBLD)CCSOURCEDEBUGFLAGS = -g -xs
514 CFLAGS= $(COPTFLAG) $($(MACH)_CFLAGS) $(SPACEFLAG) $(CCMODE) \
515 $(ILDOFF) $(CERRWARN) $(C99MODE) $(CCUNBOUND) $(IROPTFLAG) \
516 $(CGLOBALSTATIC) $(CCNOAUTOINLINE) $(CSOURCEDEBUGFLAGS) \
518 CFLAGS64= $(COPTFLAG64) $($(MACH64)_CFLAGS) $(SPACEFLAG64) $(CCMODE64) \
519 $(ILDOFF) $(CERRWARN) $(C99MODE) $(CCUNBOUND) $(IROPTFLAG64) \
520 $(CGLOBALSTATIC) $(CCNOAUTOINLINE) $(CSOURCEDEBUGFLAGS) \
523 # Flags that are used to build parts of the code that are subsequently
524 # run on the build machine (also known as the NATIVE_BUILD).
526 NATIVE_CFLAGS= $(COPTFLAG) $($(NATIVE_MACH)_CFLAGS) $(CCMODE) \
527 $(ILDOFF) $(CERRWARN) $(C99MODE) $($(NATIVE_MACH)_CCUNBOUND) \
528 $(IROPTFLAG) $(CGLOBALSTATIC) $(CCNOAUTOINLINE) \
529 $(CSOURCEDEBUGFLAGS) $(CUSERFLAGS)
531 DTEXTDOM=-DTEXT_DOMAIN=\"$(TEXT_DOMAIN)\" # For messaging.
532 DTS_ERRNO=-D_TS_ERRNO
533 CPPFLAGS.first= # Please keep empty. Only lower makefiles should set this.
534 CPPFLAGS.master=$(DTEXTDOM) $(DTS_ERRNO) \
535 $(ENVCPPFLAGS1) $(ENVCPPFLAGS2) $(ENVCPPFLAGS3) $(ENVCPPFLAGS4) \
536 $(ADJUNCT_PROTO:%=-I%/usr/include)
537 CPPFLAGS.native=$(ENVCPPFLAGS1) $(ENVCPPFLAGS2) $(ENVCPPFLAGS3) \
538 $(ENVCPPFLAGS4) -I$(NATIVE_ADJUNCT)/include
539 CPPFLAGS= $(CPPFLAGS.first) $(CPPFLAGS.master)
540 AS_CPPFLAGS= $(CPPFLAGS.first) $(CPPFLAGS.master)
541 JAVAFLAGS= -source 1.6 -target 1.6 -Xlint:deprecation,-options
544 # For source message catalogue
546 .SUFFIXES: $(SUFFIXES) .i .po
547 MSGROOT= $(ROOT)/catalog
548 MSGDOMAIN= $(MSGROOT)/$(TEXT_DOMAIN)
549 MSGDOMAINPOFILE = $(MSGDOMAIN)/$(POFILE)
550 DCMSGDOMAIN= $(MSGROOT)/LC_TIME/$(TEXT_DOMAIN)
551 DCMSGDOMAINPOFILE = $(DCMSGDOMAIN)/$(DCFILE:.dc=.po)
553 CLOBBERFILES += $(POFILE) $(POFILES)
554 COMPILE.cpp= $(CC) -E -C $(CFLAGS) $(CPPFLAGS)
555 XGETTEXT= /usr/bin/xgettext
556 XGETFLAGS= -c TRANSLATION_NOTE
557 GNUXGETTEXT= /usr/gnu/bin/xgettext
558 GNUXGETFLAGS= --add-comments=TRANSLATION_NOTE --keyword=_ \
559 --strict --no-location --omit-header
560 BUILD.po= $(XGETTEXT) $(XGETFLAGS) -d $(<F) $<.i ;\
562 $(SED) "/^domain/d" < $(<F).po > $@ ;\
566 # This is overwritten by local Makefile when PROG is a list.
570 sparc_CCFLAGS= -cg92 -compat=4 \
571 -Qoption ccfe -messages=no%anachronism \
573 sparcv9_CCFLAGS= $(sparcv9_XARCH) -dalign -compat=5 \
574 -Qoption ccfe -messages=no%anachronism \
575 -Qoption ccfe -features=no%conststrings \
578 i386_CCFLAGS= -compat=4 \
579 -Qoption ccfe -messages=no%anachronism \
580 -Qoption ccfe -features=no%conststrings \
582 amd64_CCFLAGS= $(amd64_XARCH) -compat=5 \
583 -Qoption ccfe -messages=no%anachronism \
584 -Qoption ccfe -features=no%conststrings \
588 sparcv9_CCOPTFLAG= -O
592 CCOPTFLAG= $($(MACH)_CCOPTFLAG)
593 CCOPTFLAG64= $($(MACH64)_CCOPTFLAG)
594 CCFLAGS= $(CCOPTFLAG) $($(MACH)_CCFLAGS) $(CCSOURCEDEBUGFLAGS) \
596 CCFLAGS64= $(CCOPTFLAG64) $($(MACH64)_CCFLAGS) $(CCSOURCEDEBUGFLAGS) \
603 ELFWRAP_FLAGS64 = -64
606 # Various mapfiles that are used throughout the build, and delivered to
609 MAPFILE.NED_i386 = $(SRC)/common/mapfiles/common/map.noexdata
611 MAPFILE.NED = $(MAPFILE.NED_$(MACH))
612 MAPFILE.PGA = $(SRC)/common/mapfiles/common/map.pagealign
613 MAPFILE.NES = $(SRC)/common/mapfiles/common/map.noexstk
614 MAPFILE.FLT = $(SRC)/common/mapfiles/common/map.filter
615 MAPFILE.LEX = $(SRC)/common/mapfiles/common/map.lex.yy
618 # Generated mapfiles that are compiler specific, and used throughout the
619 # build. These mapfiles are not delivered in /usr/lib/ld.
621 MAPFILE.NGB_sparc= $(SRC)/common/mapfiles/gen/sparc_gcc_map.noexeglobs
622 MAPFILE.NGB_sparcv9= $(SRC)/common/mapfiles/gen/sparcv9_gcc_map.noexeglobs
623 MAPFILE.NGB_i386= $(SRC)/common/mapfiles/gen/i386_gcc_map.noexeglobs
624 MAPFILE.NGB_amd64= $(SRC)/common/mapfiles/gen/amd64_gcc_map.noexeglobs
625 MAPFILE.NGB = $(MAPFILE.NGB_$(MACH))
628 # A generic interface mapfile name, used by various dynamic objects to define
629 # the interfaces and interposers the object must export.
631 MAPFILE.INT = mapfile-intf
634 # LDLIBS32 and LDLIBS64 can be set in the environment to override the following
637 # These environment settings make sure that no libraries are searched outside
638 # of the local workspace proto area:
639 # LDLIBS32=-YP,$ROOT/lib:$ROOT/usr/lib
640 # LDLIBS64=-YP,$ROOT/lib/$MACH64:$ROOT/usr/lib/$MACH64
642 LDLIBS32 = $(ENVLDLIBS1) $(ENVLDLIBS2) $(ENVLDLIBS3)
643 LDLIBS32 += $(ADJUNCT_PROTO:%=-L%/usr/lib -L%/lib)
644 LDLIBS.cmd = $(LDLIBS32)
645 LDLIBS.lib = $(LDLIBS32)
647 LDLIBS64 = $(ENVLDLIBS1:%=%/$(MACH64)) \
648 $(ENVLDLIBS2:%=%/$(MACH64)) \
649 $(ENVLDLIBS3:%=%/$(MACH64))
650 LDLIBS64 += $(ADJUNCT_PROTO:%=-L%/usr/lib/$(MACH64) -L%/lib/$(MACH64))
653 # Define compilation macros.
655 COMPILE.c= $(CC) $(CFLAGS) $(CPPFLAGS) -c
656 COMPILE64.c= $(CC) $(CFLAGS64) $(CPPFLAGS) -c
657 COMPILE.cc= $(CCC) $(CCFLAGS) $(CPPFLAGS) -c
658 COMPILE64.cc= $(CCC) $(CCFLAGS64) $(CPPFLAGS) -c
659 COMPILE.s= $(AS) $(ASFLAGS) $(AS_CPPFLAGS)
660 COMPILE64.s= $(AS) $(ASFLAGS) $($(MACH64)_AS_XARCH) $(AS_CPPFLAGS)
661 COMPILE.d= $(DTRACE) -G -32
662 COMPILE64.d= $(DTRACE) -G -64
663 COMPILE.b= $(ELFWRAP) $(ELFWRAP_FLAGS$(CLASS))
664 COMPILE64.b= $(ELFWRAP) $(ELFWRAP_FLAGS$(CLASS))
667 COMPILE.java= $(JAVAC) $(JAVAFLAGS) -classpath $(CLASSPATH)
672 CCNEEDED = -L$(GCCLIBDIR) -lstdc++ -lgcc_s
673 CCEXTNEEDED = $(CCNEEDED)
675 LINK.c= $(CC) $(CFLAGS) $(CPPFLAGS) $(LDFLAGS)
676 LINK64.c= $(CC) $(CFLAGS64) $(CPPFLAGS) $(LDFLAGS)
677 NORUNPATH= -norunpath -nolib
678 LINK.cc= $(CCC) $(CCFLAGS) $(CPPFLAGS) $(NORUNPATH) \
679 $(LDFLAGS) $(CCNEEDED)
680 LINK64.cc= $(CCC) $(CCFLAGS64) $(CPPFLAGS) $(NORUNPATH) \
681 $(LDFLAGS) $(CCNEEDED)
686 # Note that the undefine of __PRAGMA_REDEFINE_EXTNAME can be removed once
687 # ON is built with a version of lint that has the fix for 4484186.
689 ALWAYS_LINT_DEFS = -errtags=yes -s
690 ALWAYS_LINT_DEFS += -erroff=E_PTRDIFF_OVERFLOW
691 ALWAYS_LINT_DEFS += -erroff=E_ASSIGN_NARROW_CONV
692 ALWAYS_LINT_DEFS += -U__PRAGMA_REDEFINE_EXTNAME
693 ALWAYS_LINT_DEFS += $(C99LMODE)
694 ALWAYS_LINT_DEFS += -errsecurity=$(SECLEVEL)
695 ALWAYS_LINT_DEFS += -erroff=E_SEC_CREAT_WITHOUT_EXCL
696 ALWAYS_LINT_DEFS += -erroff=E_SEC_FORBIDDEN_WARN_CREAT
697 # XX64 -- really only needed for amd64 lint
698 ALWAYS_LINT_DEFS += -erroff=E_ASSIGN_INT_TO_SMALL_INT
699 ALWAYS_LINT_DEFS += -erroff=E_CAST_INT_CONST_TO_SMALL_INT
700 ALWAYS_LINT_DEFS += -erroff=E_CAST_INT_TO_SMALL_INT
701 ALWAYS_LINT_DEFS += -erroff=E_CAST_TO_PTR_FROM_INT
702 ALWAYS_LINT_DEFS += -erroff=E_COMP_INT_WITH_LARGE_INT
703 ALWAYS_LINT_DEFS += -erroff=E_INTEGRAL_CONST_EXP_EXPECTED
704 ALWAYS_LINT_DEFS += -erroff=E_PASS_INT_TO_SMALL_INT
705 ALWAYS_LINT_DEFS += -erroff=E_PTR_CONV_LOSES_BITS
707 # This forces lint to pick up note.h and sys/note.h from Devpro rather than
708 # from the proto area. The note.h that ON delivers would disable NOTE().
709 ONLY_LINT_DEFS = -I$(SPRO_VROOT)/prod/include/lint
712 LINT.c= $(LINT) $(ONLY_LINT_DEFS) $(LINTFLAGS) $(CPPFLAGS) \
714 LINT64.c= $(LINT) $(ONLY_LINT_DEFS) $(LINTFLAGS64) $(CPPFLAGS) \
718 # For some future builds, NATIVE_MACH and MACH might be different.
719 # Therefore, NATIVE_MACH needs to be redefined in the
720 # environment as `uname -p` to override this macro.
722 # For now at least, we cross-compile amd64 on i386 machines.
723 NATIVE_MACH= $(MACH:amd64=i386)
725 # Define native compilation macros
728 # Base directory where compilers are loaded.
729 # Defined here so it can be overridden by developer.
731 SPRO_ROOT= $(BUILD_TOOLS)/SUNWspro
732 SPRO_VROOT= $(SPRO_ROOT)/SS12
735 # Till SS12u1 formally becomes the NV CBE, LINT is hard
736 # coded to be picked up from the $SPRO_ROOT/sunstudio12.1/
737 # location. Impacted variables are sparc_LINT, sparcv9_LINT,
738 # i386_LINT, amd64_LINT.
739 # Reset them when SS12u1 is rolled out.
742 # Specify platform compiler versions for languages
743 # that we use (currently only c and c++).
745 sparc_CC= $(ONBLD_TOOLS)/bin/$(MACH)/cw -_gcc
746 sparc_CCC= $(ONBLD_TOOLS)/bin/$(MACH)/cw -_g++
747 sparc_CPP= /usr/ccs/lib/cpp
748 sparc_AS= /usr/ccs/bin/as -xregsym=no
749 sparc_LD= /usr/ccs/bin/ld
750 sparc_LINT= $(SPRO_ROOT)/sunstudio12.1/bin/lint
752 sparcv9_CC= $(ONBLD_TOOLS)/bin/$(MACH)/cw -_gcc
753 sparcv9_CCC= $(ONBLD_TOOLS)/bin/$(MACH)/cw -_g++
754 sparcv9_CPP= /usr/ccs/lib/cpp
755 sparcv9_AS= /usr/ccs/bin/as -xregsym=no
756 sparcv9_LD= /usr/ccs/bin/ld
757 sparcv9_LINT= $(SPRO_ROOT)/sunstudio12.1/bin/lint
759 i386_CC= $(ONBLD_TOOLS)/bin/$(MACH)/cw -_gcc
760 i386_CCC= $(ONBLD_TOOLS)/bin/$(MACH)/cw -_g++
761 i386_CPP= /usr/ccs/lib/cpp
762 i386_AS= $(ONBLD_TOOLS)/bin/$(MACH)/aw
763 i386_LD= /usr/ccs/bin/ld
764 i386_LINT= $(SPRO_ROOT)/sunstudio12.1/bin/lint
766 amd64_CC= $(ONBLD_TOOLS)/bin/$(MACH)/cw -_gcc
767 amd64_CCC= $(ONBLD_TOOLS)/bin/$(MACH)/cw -_g++
768 amd64_CPP= /usr/ccs/lib/cpp
769 amd64_AS= $(ONBLD_TOOLS)/bin/$(MACH)/aw
770 amd64_LD= /usr/ccs/bin/ld
771 amd64_LINT= $(SPRO_ROOT)/sunstudio12.1/bin/lint
773 NATIVECC= $($(NATIVE_MACH)_CC)
774 NATIVECCC= $($(NATIVE_MACH)_CCC)
775 NATIVECPP= $($(NATIVE_MACH)_CPP)
776 NATIVEAS= $($(NATIVE_MACH)_AS)
777 NATIVELD= $($(NATIVE_MACH)_LD)
778 NATIVELINT= $($(NATIVE_MACH)_LINT)
781 # Makefile.master.64 overrides these settings
790 # Pass -Y flag to cpp (method of which is release-dependent)
796 BNODIRECT= -Bnodirect
803 ZINITFIRST= -zinitfirst
804 ZINTERPOSE= -zinterpose
805 ZLAZYLOAD= -zlazyload
806 ZLOADFLTR= -zloadfltr
808 ZNODEFAULTLIB= -znodefaultlib
810 ZNODELETE= -znodelete
811 ZNODLOPEN= -znodlopen
813 ZNOLAZYLOAD= -znolazyload
814 ZNOLDYNSYM= -znoldynsym
816 ZNOVERSION= -znoversion
818 ZREDLOCSYM= -zredlocsym
825 # Handle different PIC models on different ISAs
826 # (May be overridden by lower-level Makefiles)
828 sparc_C_PICFLAGS = -K pic
829 sparcv9_C_PICFLAGS = -K pic
830 i386_C_PICFLAGS = -K pic
831 amd64_C_PICFLAGS = -K pic
832 C_PICFLAGS = $($(MACH)_C_PICFLAGS)
833 C_PICFLAGS64 = $($(MACH64)_C_PICFLAGS)
835 sparc_C_BIGPICFLAGS = -K PIC
836 sparcv9_C_BIGPICFLAGS = -K PIC
837 i386_C_BIGPICFLAGS = -K PIC
838 amd64_C_BIGPICFLAGS = -K PIC
839 C_BIGPICFLAGS = $($(MACH)_C_BIGPICFLAGS)
840 C_BIGPICFLAGS64 = $($(MACH64)_C_BIGPICFLAGS)
842 # CC requires there to be no space between '-K' and 'pic' or 'PIC'.
843 sparc_CC_PICFLAGS = -Kpic
844 sparcv9_CC_PICFLAGS = -KPIC
845 i386_CC_PICFLAGS = -Kpic
846 amd64_CC_PICFLAGS = -Kpic
847 CC_PICFLAGS = $($(MACH)_CC_PICFLAGS)
848 CC_PICFLAGS64 = $($(MACH64)_CC_PICFLAGS)
850 AS_PICFLAGS= $(C_PICFLAGS)
851 AS_BIGPICFLAGS= $(C_BIGPICFLAGS)
854 # Default label for CTF sections
856 CTFCVTFLAGS= -i -L VERSION
859 # Override to pass module-specific flags to ctfmerge. Currently used only by
860 # krtld to turn on fuzzy matching, and source-level debugging to inhibit
865 CTFCONVERT_O = $(CTFCONVERT) $(CTFCVTFLAGS) $@
868 ELFSIGN_CRYPTO= $(ELFSIGN_O)
869 ELFSIGN_OBJECT= $(ELFSIGN_O)
871 # Rules (normally from make.rules) and macros which are used for post
872 # processing files. Normally, these do stripping of the comment section
874 # RELEASE_CM: Should be editted to reflect the release.
875 # POST_PROCESS_O: Post-processing for `.o' files.
876 # POST_PROCESS_A: Post-processing for `.a' files (currently null).
877 # POST_PROCESS_SO: Post-processing for `.so' files.
878 # POST_PROCESS: Post-processing for executable files (no suffix).
879 # Note that these macros are not completely generalized as they are to be
880 # used with the file name to be processed following.
882 # It is left as an exercise to Release Engineering to embellish the generation
883 # of the release comment string.
885 # If this is a standard development build:
886 # compress the comment section (mcs -c)
887 # add the standard comment (mcs -a $(RELEASE_CM))
888 # add the development specific comment (mcs -a $(DEV_CM))
890 # If this is an installation build:
891 # delete the comment section (mcs -d)
892 # add the standard comment (mcs -a $(RELEASE_CM))
893 # add the development specific comment (mcs -a $(DEV_CM))
895 # If this is an release build:
896 # delete the comment section (mcs -d)
897 # add the standard comment (mcs -a $(RELEASE_CM))
899 # The following list of macros are used in the definition of RELEASE_CM
900 # which is used to label all binaries in the build:
902 # RELEASE Specific release of the build, eg: 5.2
903 # RELEASE_MAJOR Major version number part of $(RELEASE)
904 # RELEASE_MINOR Minor version number part of $(RELEASE)
905 # VERSION Version of the build (alpha, beta, Generic)
906 # PATCHID If this is a patch this value should contain
907 # the patchid value (eg: "Generic 100832-01"), otherwise
908 # it will be set to $(VERSION)
909 # RELEASE_DATE Date of the Release Build
910 # PATCH_DATE Date the patch was created, if this is blank it
911 # will default to the RELEASE_DATE
915 RELEASE= $(RELEASE_MAJOR).$(RELEASE_MINOR)
916 VERSION= SunOS Development
918 RELEASE_DATE= release date not set
919 PATCH_DATE= $(RELEASE_DATE)
920 RELEASE_CM= "@($(POUND_SIGN))SunOS $(RELEASE) $(PATCHID) $(PATCH_DATE)"
921 DEV_CM= "@($(POUND_SIGN))SunOS Internal Development: non-nightly build"
923 PROCESS_COMMENT= @?${MCS} -d -a $(RELEASE_CM) -a $(DEV_CM)
924 $(RELEASE_BUILD)PROCESS_COMMENT= @?${MCS} -d -a $(RELEASE_CM)
926 STRIP_STABS= $(STRIP) -x $@
927 $(SRCDBGBLD)STRIP_STABS= :
931 POST_PROCESS_SO= $(PROCESS_COMMENT) $@ ; $(STRIP_STABS) ; \
933 POST_PROCESS= $(PROCESS_COMMENT) $@ ; $(STRIP_STABS) ; \
937 # chk4ubin is a tool that inspects a module for a symbol table
938 # ELF section size which can trigger an OBP bug on older platforms.
939 # This problem affects only specific sun4u bootable modules.
941 CHK4UBIN= $(ONBLD_TOOLS)/bin/$(MACH)/chk4ubin
943 CHK4UBINARY= $(CHK4UBIN) $(CHK4UBINFLAGS) $@
946 # PKGARCHIVE specifies the default location where packages should be
949 $(RELEASE_BUILD)PKGARCHIVESUFFIX= -nd
950 PKGARCHIVE=$(SRC)/../../packages/$(MACH)/nightly$(PKGARCHIVESUFFIX)
953 # The repositories will be created with these publisher settings. To
954 # update an image to the resulting repositories, this must match the
955 # publisher name provided to "pkg set-publisher."
957 PKGPUBLISHER_REDIST= on-nightly
958 PKGPUBLISHER_NONREDIST= on-extra
960 # Default build rules which perform comment section post-processing.
963 $(LINK.c) -o $@ $< $(LDLIBS)
966 $(COMPILE.c) $(OUTPUT_OPTION) $< $(CTFCONVERT_HOOK)
969 $(COMPILE.c) -o $% $<
970 $(PROCESS_COMMENT) $%
971 $(AR) $(ARFLAGS) $@ $%
974 $(COMPILE.s) -o $@ $<
977 $(COMPILE.s) -o $% $<
978 $(PROCESS_COMMENT) $%
979 $(AR) $(ARFLAGS) $@ $%
982 $(LINK.cc) -o $@ $< $(LDLIBS)
985 $(COMPILE.cc) $(OUTPUT_OPTION) $<
988 $(COMPILE.cc) -o $% $<
989 $(AR) $(ARFLAGS) $@ $%
990 $(PROCESS_COMMENT) $%
994 $(LINK.c) -o $@ y.tab.c $(LDLIBS)
999 $(COMPILE.c) -o $@ y.tab.c $(CTFCONVERT_HOOK)
1005 $(LINK.c) -o $@ $*.c -ll $(LDLIBS)
1011 $(COMPILE.c) -o $@ $*.c $(CTFCONVERT_HOOK)
1016 $(COMPILE.b) -o $@ $<
1022 # Bourne and Korn shell script message catalog build rules.
1023 # We extract all gettext strings with sed(1) (being careful to permit
1024 # multiple gettext strings on the same line), weed out the dups, and
1025 # build the catalogue with awk(1).
1030 -e "s/.*gettext *\(\"[^\"]*\"\).*/\1/p" \
1032 -e "s/\(.*\)gettext *\"[^\"]*\"\(.*\)/\1\2/" \
1034 $< | sort -u | $(AWK) '{ print "msgid\t" $$0 "\nmsgstr" }' > $@
1037 # Python and Perl executable and message catalog build rules.
1039 .SUFFIXES: .pl .pm .py .pyc
1043 $(SED) -e "s@TEXT_DOMAIN@\"$(TEXT_DOMAIN)\"@" $< > $@;
1047 $(RM) $@; $(CAT) $< > $@; $(CHMOD) +x $@
1051 $(PYTHON) -mpy_compile $<
1052 @[ $(<)c = $@ ] || $(MV) $(<)c $@
1055 $(GNUXGETTEXT) $(GNUXGETFLAGS) -d $(<F:%.py=%) $< ;
1058 $(XGETTEXT) $(XGETFLAGS) -d $(<F) $< ;
1060 $(SED) "/^domain/d" < $(<F).po > $@ ;
1064 # When using xgettext, we want messages to go to the default domain,
1065 # rather than the specified one. This special version of the
1066 # COMPILE.cpp macro effectively prevents expansion of TEXT_DOMAIN,
1067 # causing xgettext to put all messages into the default domain.
1069 CPPFORPO=$(COMPILE.cpp:\"$(TEXT_DOMAIN)\"=TEXT_DOMAIN)
1079 $(CPPFORPO) y.tab.c > $@
1084 $(CPPFORPO) lex.yy.c > $@
1088 $(CPPFORPO) $< > $<.i
1092 $(CPPFORPO) $< > $<.i
1097 $(CPPFORPO) y.tab.c > $<.i
1103 $(CPPFORPO) lex.yy.c > $<.i
1108 # Rules to perform stylistic checks
1110 .SUFFIXES: .x .xml .check .xmlchk
1122 # Include rules to render automated sccs get rules "safe".
1124 include $(SRC)/Makefile.noget