17c478bd9Sstevel@tonic-gate# 27c478bd9Sstevel@tonic-gate# CDDL HEADER START 37c478bd9Sstevel@tonic-gate# 47c478bd9Sstevel@tonic-gate# The contents of this file are subject to the terms of the 502e56f3fSwesolows# Common Development and Distribution License (the "License"). 602e56f3fSwesolows# You may not use this file except in compliance with the License. 77c478bd9Sstevel@tonic-gate# 87c478bd9Sstevel@tonic-gate# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 97c478bd9Sstevel@tonic-gate# or http://www.opensolaris.org/os/licensing. 107c478bd9Sstevel@tonic-gate# See the License for the specific language governing permissions 117c478bd9Sstevel@tonic-gate# and limitations under the License. 127c478bd9Sstevel@tonic-gate# 137c478bd9Sstevel@tonic-gate# When distributing Covered Code, include this CDDL HEADER in each 147c478bd9Sstevel@tonic-gate# file and include the License file at usr/src/OPENSOLARIS.LICENSE. 157c478bd9Sstevel@tonic-gate# If applicable, add the following below this CDDL HEADER, with the 167c478bd9Sstevel@tonic-gate# fields enclosed by brackets "[]" replaced with your own identifying 177c478bd9Sstevel@tonic-gate# information: Portions Copyright [yyyy] [name of copyright owner] 187c478bd9Sstevel@tonic-gate# 197c478bd9Sstevel@tonic-gate# CDDL HEADER END 207c478bd9Sstevel@tonic-gate# 2102e56f3fSwesolows 227c478bd9Sstevel@tonic-gate# 23b83ec4edSjmcp# Copyright (c) 1989, 2010, Oracle and/or its affiliates. All rights reserved. 240a49f0acSAdam H. Leventhal# Copyright (c) 2012 by Delphix. All rights reserved. 25538aa54dSGarrett D'Amore# Copyright 2014 Garrett D'Amore <garrett@damore.org> 261f2ca518SDan McDonald# Copyright 2015, OmniTI Computer Consulting, Inc. All rights reserved. 27fca42680SGary Mills# Copyright 2015 Gary Mills 284cb69eccSIgor Kozhukhov# Copyright 2015 Igor Kozhukhov <ikozhukhov@gmail.com> 290cc5983cSToomas Soome# Copyright 2016 Toomas Soome <tsoome@me.com> 30300fdee2SAndy Fiddaman# Copyright 2018 OmniOS Community Edition (OmniOSce) Association. 3103c3ec9aSDan McDonald# Copyright 2021 Joyent, Inc. 328e0c8248SAndrew Stormont# Copyright 2019 RackTop Systems. 336112cec5SJoshua M. Clulow# Copyright 2020 Oxide Computer Company 3451396a8eSPeter Tribble# Copyright 2020 Peter Tribble 357c478bd9Sstevel@tonic-gate# 360a49f0acSAdam H. Leventhal 377c478bd9Sstevel@tonic-gate# 387c478bd9Sstevel@tonic-gate# Makefile.master, global definitions for system source 397c478bd9Sstevel@tonic-gate# 407c478bd9Sstevel@tonic-gateROOT= /proto 417c478bd9Sstevel@tonic-gate 42494f7e12SKeith M Wesolowski# 43494f7e12SKeith M Wesolowski# Adjunct root, containing an additional proto area to be used for headers 44494f7e12SKeith M Wesolowski# and libraries. 45494f7e12SKeith M Wesolowski# 46494f7e12SKeith M WesolowskiADJUNCT_PROTO= 475801b0f0SToomas Soome# HAVE_ADJUNCT_PROTO - ADJUNCT_PROTO is set to a non-default value 485801b0f0SToomas Soome# NO_ADJUNCT_PROTO - ADJUNCT_PROTO is unset 495801b0f0SToomas Soome# 505801b0f0SToomas Soome# This works by replacing any value in ADJUNCT_PROTO with POUND_SIGN, which 515801b0f0SToomas Soome# only happens if it has some value, and then setting HAVE_ADJUNCT_PROTO 525801b0f0SToomas Soome# oppositely. 535801b0f0SToomas SoomeNO_ADJUNCT_PROTO=$(ADJUNCT_PROTO:%=$(POUND_SIGN)) 545801b0f0SToomas Soome$(NO_ADJUNCT_PROTO)HAVE_ADJUNCT_PROTO=$(POUND_SIGN) 55494f7e12SKeith M Wesolowski 56494f7e12SKeith M Wesolowski# 57494f7e12SKeith M Wesolowski# Adjunct for building things that run on the build machine. 58494f7e12SKeith M Wesolowski# 59494f7e12SKeith M WesolowskiNATIVE_ADJUNCT= /usr 60494f7e12SKeith M Wesolowski 614c87aefeSPatrick Mooney# 624c87aefeSPatrick Mooney# Compatibility code for FreeBSD etc. 634c87aefeSPatrick Mooney# 644c87aefeSPatrick MooneyCOMPAT= $(SRC)/compat 65d0b3c59bSPatrick MooneyCONTRIB= $(SRC)/contrib 664c87aefeSPatrick Mooney 677c478bd9Sstevel@tonic-gate# 6824fe0b3bSjmcp# RELEASE_BUILD should be cleared for final release builds. 6924fe0b3bSjmcp# NOT_RELEASE_BUILD is exactly what the name implies. 707c478bd9Sstevel@tonic-gate# 717c478bd9Sstevel@tonic-gate# __GNUC toggles the building of ON components using gcc and related tools. 727c478bd9Sstevel@tonic-gate# Normally set to `#', set it to `' to do gcc build. 737c478bd9Sstevel@tonic-gate# 747c478bd9Sstevel@tonic-gate# The declaration POUND_SIGN is always '#'. This is needed to get around the 757c478bd9Sstevel@tonic-gate# make feature that '#' is always a comment delimiter, even when escaped or 7648bc00d6Sjmcp# quoted. We use this macro expansion method to get POUND_SIGN rather than 7748bc00d6Sjmcp# always breaking out a shell because the general case can cause a noticable 7848bc00d6Sjmcp# slowdown in build times when so many Makefiles include Makefile.master. 797c478bd9Sstevel@tonic-gate# 8048bc00d6Sjmcp# While the majority of users are expected to override the setting below 8148bc00d6Sjmcp# with an env file (via nightly or bldenv), if you aren't building that way 8248bc00d6Sjmcp# (ie, you're using "ws" or some other bootstrapping method) then you need 8348bc00d6Sjmcp# this definition in order to avoid the subshell invocation mentioned above. 8448bc00d6Sjmcp# 8548bc00d6Sjmcp 8648bc00d6SjmcpPRE_POUND= pre\# 8748bc00d6SjmcpPOUND_SIGN= $(PRE_POUND:pre\%=%) 887c478bd9Sstevel@tonic-gate 897c478bd9Sstevel@tonic-gateNOT_RELEASE_BUILD= 907c478bd9Sstevel@tonic-gateRELEASE_BUILD= $(POUND_SIGN) 917c478bd9Sstevel@tonic-gate$(RELEASE_BUILD)NOT_RELEASE_BUILD= $(POUND_SIGN) 927c478bd9Sstevel@tonic-gatePATCH_BUILD= $(POUND_SIGN) 937c478bd9Sstevel@tonic-gate 947c478bd9Sstevel@tonic-gate# SPARC_BLD is '#' for an Intel build. 957c478bd9Sstevel@tonic-gate# INTEL_BLD is '#' for a Sparc build. 967c478bd9Sstevel@tonic-gateSPARC_BLD_1= $(MACH:i386=$(POUND_SIGN)) 977c478bd9Sstevel@tonic-gateSPARC_BLD= $(SPARC_BLD_1:sparc=) 987c478bd9Sstevel@tonic-gateINTEL_BLD_1= $(MACH:sparc=$(POUND_SIGN)) 997c478bd9Sstevel@tonic-gateINTEL_BLD= $(INTEL_BLD_1:i386=) 1007c478bd9Sstevel@tonic-gate 1016a3e8e86SRichard Lowe# The variables below control the compilers used during the build. 1026a3e8e86SRichard Lowe# There are a number of permutations. 1036a3e8e86SRichard Lowe# 1046a3e8e86SRichard Lowe# __GNUC and __SUNC control (and indicate) the primary compiler. Whichever 1056a3e8e86SRichard Lowe# one is not POUND_SIGN is the primary, with the other as the shadow. They 1066a3e8e86SRichard Lowe# may also be used to control entirely compiler-specific Makefile assignments. 1074f4d4600SRichard Lowe# __GNUC and GCC are the default. 1086a3e8e86SRichard Lowe# 1096a3e8e86SRichard Lowe# __GNUC64 indicates that the 64bit build should use the GNU C compiler. 1106a3e8e86SRichard Lowe# There is no Sun C analogue. 1116a3e8e86SRichard Lowe# 1126a3e8e86SRichard Lowe# The following version-specific options are operative regardless of which 1136a3e8e86SRichard Lowe# compiler is primary, and control the versions of the given compilers to be 1146a3e8e86SRichard Lowe# used. They also allow compiler-version specific Makefile fragments. 1156a3e8e86SRichard Lowe# 1166a3e8e86SRichard Lowe 1174f4d4600SRichard Lowe__SUNC= $(POUND_SIGN) 1184f4d4600SRichard Lowe$(__SUNC)__GNUC= $(POUND_SIGN) 1196a3e8e86SRichard Lowe__GNUC64= $(__GNUC) 1207c478bd9Sstevel@tonic-gate 12114c3be39SGordon Ross# Allow build-time "configuration" to enable or disable some things. 12214c3be39SGordon Ross# The default is POUND_SIGN, meaning "not enabled". If the environment 12314c3be39SGordon Ross# passes in an override like ENABLE_SMB_PRINTING= (empty) that will 12414c3be39SGordon Ross# uncomment things in the lower Makefiles to enable the feature. 12514c3be39SGordon RossENABLE_SMB_PRINTING= $(POUND_SIGN) 12614c3be39SGordon Ross 1277c478bd9Sstevel@tonic-gate# BUILD_TOOLS is the root of all tools including compilers. 1287c478bd9Sstevel@tonic-gate# ONBLD_TOOLS is the root of all the tools that are part of SUNWonbld. 1297c478bd9Sstevel@tonic-gate 1307c478bd9Sstevel@tonic-gateBUILD_TOOLS= /ws/onnv-tools 1317c478bd9Sstevel@tonic-gateONBLD_TOOLS= $(BUILD_TOOLS)/onbld 1327c478bd9Sstevel@tonic-gate 133e53cbaa9SRichard PALO# define runtime JAVA_HOME, primarily for cmd/pools/poold 134e53cbaa9SRichard PALOJAVA_HOME= /usr/java 135e53cbaa9SRichard PALO# define buildtime JAVA_ROOT 1367c478bd9Sstevel@tonic-gateJAVA_ROOT= /usr/java 13751396a8eSPeter Tribble# Build uses java8 by default. Pass the variable below set to empty 13867048e0fSYuri Pankov# string in the environment to override. 13951396a8eSPeter TribbleBLD_JAVA_11= $(POUND_SIGN) 1407c478bd9Sstevel@tonic-gate 1418123ce61SJohn LevonGNUC_ROOT= /usr/gcc/7 1427ed54634SRobert MustacchiGCCLIBDIR= $(GNUC_ROOT)/lib 1437ed54634SRobert MustacchiGCCLIBDIR64= $(GNUC_ROOT)/lib/$(MACH64) 1446a3e8e86SRichard Lowe 14511d7e819SRobert MustacchiDOCBOOK_XSL_ROOT= /usr/share/sgml/docbook/xsl-stylesheets 14611d7e819SRobert Mustacchi 1472aeafac3SToomas SoomeRPCGEN= $(ONBLD_TOOLS)/bin/$(MACH)/rpcgen 1487c478bd9Sstevel@tonic-gateSTABS= $(ONBLD_TOOLS)/bin/$(MACH)/stabs 149ae115bc7SmrjELFEXTRACT= $(ONBLD_TOOLS)/bin/$(MACH)/elfextract 150ae115bc7SmrjMBH_PATCH= $(ONBLD_TOOLS)/bin/$(MACH)/mbh_patch 1510cc5983cSToomas SoomeBTXLD= $(ONBLD_TOOLS)/bin/$(MACH)/btxld 1524b529e40SToomas SoomeVTFONTCVT= $(ONBLD_TOOLS)/bin/$(MACH)/vtfontcvt 153c0855578SRichard Lowe# echo(1) and true(1) are specified without absolute paths, so that the shell 154c0855578SRichard Lowe# spawned by make(1) may use the built-in versions. This is minimally 155c0855578SRichard Lowe# problematic, as the shell spawned by make(1) is known and under control, the 156c0855578SRichard Lowe# only risk being if the shell falls back to $PATH. 157c0855578SRichard Lowe# 158c0855578SRichard Lowe# We specifically want an echo(1) that does interpolation of escape sequences, 159c0855578SRichard Lowe# which ksh93, /bin/sh, and bash will all provide. 1607c478bd9Sstevel@tonic-gateECHO= echo 1617c478bd9Sstevel@tonic-gateTRUE= true 162c0855578SRichard LoweINS= $(ONBLD_TOOLS)/bin/$(MACH)/install 1637c478bd9Sstevel@tonic-gateSYMLINK= /usr/bin/ln -s 1647c478bd9Sstevel@tonic-gateLN= /usr/bin/ln 165c0855578SRichard LoweMKDIR= /usr/bin/mkdir 1667c478bd9Sstevel@tonic-gateCHMOD= /usr/bin/chmod 1677c478bd9Sstevel@tonic-gateMV= /usr/bin/mv -f 1687c478bd9Sstevel@tonic-gateRM= /usr/bin/rm -f 169f4b3ec61SdhCUT= /usr/bin/cut 170f4b3ec61SdhNM= /usr/ccs/bin/nm 171f4b3ec61SdhDIFF= /usr/bin/diff 1727c478bd9Sstevel@tonic-gateGREP= /usr/bin/grep 1731912d2c4SwesolowsEGREP= /usr/bin/egrep 1744c06356bSdhELFWRAP= /usr/bin/elfwrap 17532bd7e59SmjnelsonKSH93= /usr/bin/ksh93 1767c478bd9Sstevel@tonic-gateSED= /usr/bin/sed 1777b07063dSIgor KozhukhovAWK= /usr/bin/nawk 1787c478bd9Sstevel@tonic-gateCP= /usr/bin/cp -f 1797c478bd9Sstevel@tonic-gateMCS= /usr/ccs/bin/mcs 1807c478bd9Sstevel@tonic-gateCAT= /usr/bin/cat 18124da5b34SrieELFDUMP= /usr/ccs/bin/elfdump 182fca42680SGary MillsM4= /usr/bin/m4 183bc36eafdSMike GerdtsGM4= /usr/bin/gm4 1847c478bd9Sstevel@tonic-gateSTRIP= /usr/ccs/bin/strip 1857c478bd9Sstevel@tonic-gateLEX= /usr/ccs/bin/lex 186cdf815bbSRichard PALOFLEX= /usr/bin/flex 1877c478bd9Sstevel@tonic-gateYACC= /usr/ccs/bin/yacc 188bc36eafdSMike GerdtsBISON= /usr/bin/bison 1897c478bd9Sstevel@tonic-gateCPP= /usr/lib/cpp 1907ed54634SRobert MustacchiANSI_CPP= $(GNUC_ROOT)/bin/cpp 1917c478bd9Sstevel@tonic-gateJAVAC= $(JAVA_ROOT)/bin/javac 1927c478bd9Sstevel@tonic-gateJAVADOC= $(JAVA_ROOT)/bin/javadoc 1937c478bd9Sstevel@tonic-gateJAR= $(JAVA_ROOT)/bin/jar 1947c478bd9Sstevel@tonic-gateCTFCONVERT= $(ONBLD_TOOLS)/bin/$(MACH)/ctfconvert 195bc1f688bSRobert MustacchiCTFDIFF= $(ONBLD_TOOLS)/bin/$(MACH)/ctfdiff 1967c478bd9Sstevel@tonic-gateCTFMERGE= $(ONBLD_TOOLS)/bin/$(MACH)/ctfmerge 1977c478bd9Sstevel@tonic-gateCTFSTABS= $(ONBLD_TOOLS)/bin/$(MACH)/ctfstabs 198a0ed5030SJason KingCTFSTRIP= $(ONBLD_TOOLS)/bin/$(MACH)/ctfstrip 199d0e51869SamwNDRGEN= $(ONBLD_TOOLS)/bin/$(MACH)/ndrgen 2007c478bd9Sstevel@tonic-gateGENOFFSETS= $(ONBLD_TOOLS)/bin/genoffsets 2017c478bd9Sstevel@tonic-gateXREF= $(ONBLD_TOOLS)/bin/xref 2027c478bd9Sstevel@tonic-gateFIND= /usr/bin/find 2037c478bd9Sstevel@tonic-gatePERL= /usr/bin/perl 20433392354SAlexander PyhalovPERL_VERSION= 5.10.0 20533392354SAlexander PyhalovPERL_PKGVERS= -510 2060ae9a84fSAndrew StormontPERL_MACH= i86pc 2070ae9a84fSAndrew Stormont$(SPARC_BLD)PERL_MACH= sun4 2080ae9a84fSAndrew StormontPERL_VARIANT= 2090ae9a84fSAndrew StormontPERL_ARCH= $(PERL_MACH)-solaris$(PERL_VARIANT)-64int 2100ae9a84fSAndrew StormontPERL_ARCH64= $(PERL_MACH)-solaris$(PERL_VARIANT)-64 2119f923083SAlexander PyhalovPYTHON_VERSION= 2.7 2129f923083SAlexander PyhalovPYTHON_PKGVERS= -27 213e8921a52SAndy FiddamanPYTHON_SUFFIX= 2149f923083SAlexander PyhalovPYTHON= /usr/bin/python$(PYTHON_VERSION) 215e8921a52SAndy FiddamanPYTHON3_VERSION= 3.5 216e8921a52SAndy FiddamanPYTHON3_PKGVERS= -35 217e8921a52SAndy FiddamanPYTHON3_SUFFIX= m 218e8921a52SAndy FiddamanPYTHON3= /usr/bin/python$(PYTHON3_VERSION) 219ca13eaa5SAndy Fiddaman$(BUILDPY3TOOLS)TOOLS_PYTHON= $(PYTHON3) 220ca13eaa5SAndy Fiddaman$(BUILDPY2TOOLS)TOOLS_PYTHON= $(PYTHON) 2217c478bd9Sstevel@tonic-gateSORT= /usr/bin/sort 22216d86563SAlexander PyhalovTR= /usr/bin/tr 2237c478bd9Sstevel@tonic-gateTOUCH= /usr/bin/touch 2247c478bd9Sstevel@tonic-gateWC= /usr/bin/wc 2257c478bd9Sstevel@tonic-gateXARGS= /usr/bin/xargs 2262cc2d1f4SdarrenmELFEDIT= /usr/bin/elfedit 2270a49f0acSAdam H. LeventhalDTRACE= /usr/sbin/dtrace -xnolibs 228620753d0SjmcpUNIQ= /usr/bin/uniq 2292ad72058SGarrett D'AmoreTAR= /usr/bin/tar 230e119f243SRobert MustacchiASTBINDIR= /usr/ast/bin 231e119f243SRobert MustacchiMSGCC= $(ASTBINDIR)/msgcc 232b599bd93SRobert MustacchiMSGFMT= /usr/bin/msgfmt -s 233503609a9SYuri PankovLCDEF= $(ONBLD_TOOLS)/bin/$(MACH)/localedef 234503609a9SYuri PankovTIC= $(ONBLD_TOOLS)/bin/$(MACH)/tic 235503609a9SYuri PankovZIC= $(ONBLD_TOOLS)/bin/$(MACH)/zic 236300fdee2SAndy FiddamanOPENSSL= /usr/bin/openssl 2377e3dbbacSRobert MustacchiCPCGEN= $(ONBLD_TOOLS)/bin/$(MACH)/cpcgen 238b8767451SRichard LoweGENICONVTBL= $(ONBLD_TOOLS)/bin/$(MACH)/geniconvtbl 2397c478bd9Sstevel@tonic-gate 2403c562093SToomas SoomeDEFAULT_CONSOLE_COLOR= \ 2413c562093SToomas Soome -DDEFAULT_ANSI_FOREGROUND=ANSI_COLOR_WHITE \ 2423c562093SToomas Soome -DDEFAULT_ANSI_BACKGROUND=ANSI_COLOR_BLACK 2433c562093SToomas Soome 2447c478bd9Sstevel@tonic-gateFILEMODE= 644 2457c478bd9Sstevel@tonic-gateDIRMODE= 755 2467c478bd9Sstevel@tonic-gate 2477c478bd9Sstevel@tonic-gate# Declare that nothing should be built in parallel. 2487c478bd9Sstevel@tonic-gate# Individual Makefiles can use the .PARALLEL target to declare otherwise. 2497c478bd9Sstevel@tonic-gate.NO_PARALLEL: 2507c478bd9Sstevel@tonic-gate 2517c478bd9Sstevel@tonic-gate# For stylistic checks 2527c478bd9Sstevel@tonic-gate# 2537c478bd9Sstevel@tonic-gate# Note that the X and C checks are not used at this time and may need 2547c478bd9Sstevel@tonic-gate# modification when they are actually used. 2557c478bd9Sstevel@tonic-gate# 256cdf0c1d5SmjnelsonCSTYLE= $(ONBLD_TOOLS)/bin/cstyle 2577c478bd9Sstevel@tonic-gateCSTYLE_TAIL= 258cdf0c1d5SmjnelsonHDRCHK= $(ONBLD_TOOLS)/bin/hdrchk 2597c478bd9Sstevel@tonic-gateHDRCHK_TAIL= 260cdf0c1d5SmjnelsonJSTYLE= $(ONBLD_TOOLS)/bin/jstyle 2617c478bd9Sstevel@tonic-gate 2627c478bd9Sstevel@tonic-gateDOT_H_CHECK= \ 2637c478bd9Sstevel@tonic-gate @$(ECHO) "checking $<"; $(CSTYLE) $< $(CSTYLE_TAIL); \ 2647c478bd9Sstevel@tonic-gate $(HDRCHK) $< $(HDRCHK_TAIL) 2657c478bd9Sstevel@tonic-gate 2667c478bd9Sstevel@tonic-gateDOT_X_CHECK= \ 2677c478bd9Sstevel@tonic-gate @$(ECHO) "checking $<"; $(RPCGEN) -C -h $< | $(CSTYLE) $(CSTYLE_TAIL); \ 2687c478bd9Sstevel@tonic-gate $(RPCGEN) -C -h $< | $(HDRCHK) $< $(HDRCHK_TAIL) 2697c478bd9Sstevel@tonic-gate 2707c478bd9Sstevel@tonic-gateDOT_C_CHECK= \ 2717c478bd9Sstevel@tonic-gate @$(ECHO) "checking $<"; $(CSTYLE) $< $(CSTYLE_TAIL) 2727c478bd9Sstevel@tonic-gate 2737c478bd9Sstevel@tonic-gateMANIFEST_CHECK= \ 2747c478bd9Sstevel@tonic-gate @$(ECHO) "checking $<"; \ 2757c478bd9Sstevel@tonic-gate SVCCFG_DTD=$(SRC)/cmd/svc/dtd/service_bundle.dtd.1 \ 2761f6eb021SLiane Praza SVCCFG_REPOSITORY=$(SRC)/cmd/svc/seed/global.db \ 2771f6eb021SLiane Praza SVCCFG_CONFIGD_PATH=$(SRC)/cmd/svc/configd/svc.configd-native \ 2787c478bd9Sstevel@tonic-gate $(SRC)/cmd/svc/svccfg/svccfg-native validate $< 2797c478bd9Sstevel@tonic-gate 2807c478bd9Sstevel@tonic-gateINS.file= $(RM) $@; $(INS) -s -m $(FILEMODE) -f $(@D) $< 2817c478bd9Sstevel@tonic-gateINS.dir= $(INS) -s -d -m $(DIRMODE) $@ 2827c478bd9Sstevel@tonic-gate# installs and renames at once 2837c478bd9Sstevel@tonic-gate# 2847c478bd9Sstevel@tonic-gateINS.rename= $(INS.file); $(MV) $(@D)/$(<F) $@ 2857c478bd9Sstevel@tonic-gate 2867c478bd9Sstevel@tonic-gate# install a link 2877c478bd9Sstevel@tonic-gateINSLINKTARGET= $< 2887c478bd9Sstevel@tonic-gateINS.link= $(RM) $@; $(LN) $(INSLINKTARGET) $@ 289b83ec4edSjmcpINS.symlink= $(RM) $@; $(SYMLINK) $(INSLINKTARGET) $@ 290b83ec4edSjmcp 291d8154717SAndy Fiddaman# The path to python that will be used for the shebang line when installing 292d8154717SAndy Fiddaman# python scripts to the proto area. This is overridden by makefiles to 293d8154717SAndy Fiddaman# select to the correct version. 294d8154717SAndy FiddamanPYSHEBANG= $(PYTHON) 295b0858fdcSAlexander Pyhalov$(BUILDPY3)PYSHEBANG= $(PYTHON3) 296b0858fdcSAlexander Pyhalov$(BUILDPY2)PYSHEBANG= $(PYTHON) 297d8154717SAndy Fiddaman 298cdf0c1d5Smjnelson# 299cdf0c1d5Smjnelson# Python bakes the mtime of the .py file into the compiled .pyc and 300cdf0c1d5Smjnelson# rebuilds if the baked-in mtime != the mtime of the source file 301cdf0c1d5Smjnelson# (rather than only if it's less than), thus when installing python 302cdf0c1d5Smjnelson# files we must make certain to not adjust the mtime of the source 303cdf0c1d5Smjnelson# (.py) file. 304cdf0c1d5Smjnelson# 305ca13eaa5SAndy FiddamanINS.pyfile= $(RM) $@; $(SED) \ 306ca13eaa5SAndy Fiddaman -e "1s:^\#!@PYTHON@:\#!$(PYSHEBANG):" \ 307ca13eaa5SAndy Fiddaman -e "1s:^\#!@TOOLS_PYTHON@:\#!$(TOOLS_PYTHON):" \ 308ca13eaa5SAndy Fiddaman < $< > $@; $(CHMOD) $(FILEMODE) $@; $(TOUCH) -r $< $@ 3097c478bd9Sstevel@tonic-gate 3107c478bd9Sstevel@tonic-gate# MACH must be set in the shell environment per uname -p on the build host 3117c478bd9Sstevel@tonic-gate# More specific architecture variables should be set in lower makefiles. 3127c478bd9Sstevel@tonic-gate# 3137c478bd9Sstevel@tonic-gate# MACH64 is derived from MACH, and BUILD64 is set to `#' for 3147c478bd9Sstevel@tonic-gate# architectures on which we do not build 64-bit versions. 3157c478bd9Sstevel@tonic-gate# (There are no such architectures at the moment.) 3167c478bd9Sstevel@tonic-gate# 3177c478bd9Sstevel@tonic-gate# Set BUILD64=# in the environment to disable 64-bit amd64 3187c478bd9Sstevel@tonic-gate# builds on i386 machines. 3197c478bd9Sstevel@tonic-gate 3207c478bd9Sstevel@tonic-gateMACH64_1= $(MACH:sparc=sparcv9) 3217c478bd9Sstevel@tonic-gateMACH64= $(MACH64_1:i386=amd64) 3227c478bd9Sstevel@tonic-gate 3237c478bd9Sstevel@tonic-gateMACH32_1= $(MACH:sparc=sparcv7) 3247c478bd9Sstevel@tonic-gateMACH32= $(MACH32_1:i386=i86) 3257c478bd9Sstevel@tonic-gate 3267c478bd9Sstevel@tonic-gatesparc_BUILD64= 3277c478bd9Sstevel@tonic-gatei386_BUILD64= 3287c478bd9Sstevel@tonic-gateBUILD64= $($(MACH)_BUILD64) 3297c478bd9Sstevel@tonic-gate 3307c478bd9Sstevel@tonic-gate# 3317c478bd9Sstevel@tonic-gate# C compiler mode. Future compilers may change the default on us, 3327c478bd9Sstevel@tonic-gate# so force extended ANSI mode globally. Lower level makefiles can 3337c478bd9Sstevel@tonic-gate# override this by setting CCMODE. 3347c478bd9Sstevel@tonic-gate# 3357c478bd9Sstevel@tonic-gateCCMODE= -Xa 3367c478bd9Sstevel@tonic-gateCCMODE64= -Xa 3377c478bd9Sstevel@tonic-gate 3387c478bd9Sstevel@tonic-gate# 3397c478bd9Sstevel@tonic-gate# C compiler verbose mode. This is so we can enable it globally, 3407c478bd9Sstevel@tonic-gate# but turn it off in the lower level makefiles of things we cannot 3417c478bd9Sstevel@tonic-gate# (or aren't going to) fix. 3427c478bd9Sstevel@tonic-gate# 3437c478bd9Sstevel@tonic-gateCCVERBOSE= -v 3447c478bd9Sstevel@tonic-gate 3457c478bd9Sstevel@tonic-gate# set this to the secret flag "-Wc,-Qiselect-v9abiwarn=1" to get warnings 3467c478bd9Sstevel@tonic-gate# from the compiler about places the -xarch=v9 may differ from -xarch=v9c. 3477c478bd9Sstevel@tonic-gateV9ABIWARN= 3487c478bd9Sstevel@tonic-gate 3497c478bd9Sstevel@tonic-gate# set this to the secret flag "-Wc,-Qiselect-regsym=0" to disable register 3507c478bd9Sstevel@tonic-gate# symbols (used to detect conflicts between objects that use global registers) 3517c478bd9Sstevel@tonic-gate# we disable this now for safety, and because genunix doesn't link with 3527c478bd9Sstevel@tonic-gate# this feature (the v9 default) enabled. 3537c478bd9Sstevel@tonic-gate# 3547c478bd9Sstevel@tonic-gate# REGSYM is separate since the C++ driver syntax is different. 3557c478bd9Sstevel@tonic-gateCCREGSYM= -Wc,-Qiselect-regsym=0 3567c478bd9Sstevel@tonic-gateCCCREGSYM= -Qoption cg -Qiselect-regsym=0 3577c478bd9Sstevel@tonic-gate 358face03d9Spetede# Prevent the removal of static symbols by the SPARC code generator (cg). 359face03d9Spetede# The x86 code generator (ube) does not remove such symbols and as such 360face03d9Spetede# using this workaround is not applicable for x86. 361face03d9Spetede# 362ac204d0dSpetedeCCSTATICSYM= -Wc,-Qassembler-ounrefsym=0 3637c478bd9Sstevel@tonic-gate# 3647c478bd9Sstevel@tonic-gate# generate 32-bit addresses in the v9 kernel. Saves memory. 3657c478bd9Sstevel@tonic-gateCCABS32= -Wc,-xcode=abs32 3666a3e8e86SRichard Lowe# 3676a3e8e86SRichard Lowe# generate v9 code which tolerates callers using the v7 ABI, for the sake of 3686a3e8e86SRichard Lowe# system calls. 3691a5ea532SRichard LoweCC32BITCALLERS= -_gcc=-massume-32bit-callers 3706a3e8e86SRichard Lowe 3716a3e8e86SRichard Lowe# GCC, especially, is increasingly beginning to auto-inline functions and 3726a3e8e86SRichard Lowe# sadly does so separately not under the general -fno-inline-functions 37370413d7bSJoshua M. Clulow# Additionally, we wish to prevent optimisations which cause GCC to clone 37470413d7bSJoshua M. Clulow# functions -- in particular, these may cause unhelpful symbols to be 37570413d7bSJoshua M. Clulow# emitted instead of function names 3766b544f0eSJohn LevonCCNOAUTOINLINE= \ 3776b544f0eSJohn Levon -_gcc=-fno-inline-small-functions \ 37870413d7bSJoshua M. Clulow -_gcc=-fno-inline-functions-called-once \ 3796b544f0eSJohn Levon -_gcc=-fno-ipa-cp \ 3803873d743SRichard Lowe -_gcc=-fno-ipa-icf \ 3813873d743SRichard Lowe -_gcc=-fno-clone-functions 3827c478bd9Sstevel@tonic-gate 383b6c711ccSRichard Lowe# GCC may put functions in different named sub-sections of .text based on 384b6c711ccSRichard Lowe# their presumed calling frequency. At least in the kernel, where we actually 385b6c711ccSRichard Lowe# deliver relocatable objects, we don't want this to happen. 386b6c711ccSRichard Lowe# 387b6c711ccSRichard Lowe# Since at present we don't benefit from this even in userland, we disable it globally, 388b6c711ccSRichard Lowe# but the application of this may move into usr/src/uts/ in future. 3893873d743SRichard LoweCCNOREORDER= -_gcc=-fno-reorder-functions 390b6c711ccSRichard Lowe 39192c1a611SBryan Cantrill# 39292c1a611SBryan Cantrill# gcc has a rather aggressive optimization on by default that infers loop 39392c1a611SBryan Cantrill# bounds based on undefined behavior (!!). This can lead to some VERY 39492c1a611SBryan Cantrill# surprising optimizations -- ones that may be technically correct in the 39592c1a611SBryan Cantrill# strictest sense but also result in incorrect program behavior. We turn 39692c1a611SBryan Cantrill# this optimization off, with extreme prejudice. 39792c1a611SBryan Cantrill# 3983873d743SRichard LoweCCNOAGGRESSIVELOOPS= -_gcc=-fno-aggressive-loop-optimizations 39992c1a611SBryan Cantrill 4005a0af816SRobert Mustacchi# 4015a0af816SRobert Mustacchi# Options to control which version of stack-protector we enable. This 4025a0af816SRobert Mustacchi# gives us a bit of flexibility and is unfortunately necessary as some 4035a0af816SRobert Mustacchi# modules do not function correctly with our defaults (qede). 4045a0af816SRobert Mustacchi# 4055a0af816SRobert Mustacchi# o STACKPROTECT_ Sets the appropriate version for the compiler 4065a0af816SRobert Mustacchi# o STACKPROTECT_strong Sets us to use strong on all of the 4075a0af816SRobert Mustacchi# compilers it supports. This is the same 4085a0af816SRobert Mustacchi# as the default. 4095a0af816SRobert Mustacchi# 4105a0af816SRobert Mustacchi# o STACKPROTECT_none Disables the stack protector. 4115a0af816SRobert Mustacchi# 4125a0af816SRobert Mustacchi# o STACKPROTECT_all Enables it for everything. 4135a0af816SRobert Mustacchi# 4145a0af816SRobert Mustacchi# o STACKPROTECT_basic Enables the basic stack protector. 4155a0af816SRobert Mustacchi# 4165a0af816SRobert Mustacchi# -fstack-protector-strong is not available in gcc4 which is why we 4175a0af816SRobert Mustacchi# have per-compiler versions below. These are not added to the default 4185a0af816SRobert Mustacchi# global CFLAGS at this time as it's being incrementally enabled 4195a0af816SRobert Mustacchi# throughout the build. 4205a0af816SRobert Mustacchi# 4213873d743SRichard LoweSTACKPROTECT_ = -_gcc=-fstack-protector-strong 4225a0af816SRobert Mustacchi 4235a0af816SRobert MustacchiSTACKPROTECT_strong = $(STACKPROTECT_) 4245a0af816SRobert MustacchiSTACKPROTECT_none = 4255a0af816SRobert MustacchiSTACKPROTECT_all = -_gcc=-fstack-protector-all 4265a0af816SRobert MustacchiSTACKPROTECT_basic = -_gcc=-fstack-protector 4275a0af816SRobert Mustacchi 4285a0af816SRobert MustacchiSTACKPROTECT_LD_ = -lssp_ns 4295a0af816SRobert MustacchiSTACKPROTECT_LD_none = 430a39905c1SRobert MustacchiSTACKPROTECT_LD_all = $(STACKPROTECT_LD_) 431a39905c1SRobert MustacchiSTACKPROTECT_LD_basic = $(STACKPROTECT_LD_) 4325a0af816SRobert Mustacchi 4335a0af816SRobert MustacchiCCSTACKPROTECT= $(STACKPROTECT_$(STACKPROTECT)) 4345a0af816SRobert MustacchiLDSTACKPROTECT= $(STACKPROTECT_LD_$(STACKPROTECT)) 4355a0af816SRobert Mustacchi 4367c478bd9Sstevel@tonic-gate# One optimization the compiler might perform is to turn this: 4377c478bd9Sstevel@tonic-gate# #pragma weak foo 4387c478bd9Sstevel@tonic-gate# extern int foo; 4397c478bd9Sstevel@tonic-gate# if (&foo) 4407c478bd9Sstevel@tonic-gate# foo = 5; 4417c478bd9Sstevel@tonic-gate# into 4427c478bd9Sstevel@tonic-gate# foo = 5; 4437c478bd9Sstevel@tonic-gate# Since we do some of this (foo might be referenced in common kernel code 4447c478bd9Sstevel@tonic-gate# but provided only for some cpu modules or platforms), we disable this 4457c478bd9Sstevel@tonic-gate# optimization. 446d69cdb36SRichard Lowe# 4477c478bd9Sstevel@tonic-gatesparc_CCUNBOUND = -Wd,-xsafe=unboundsym 4487c478bd9Sstevel@tonic-gatei386_CCUNBOUND = 4497c478bd9Sstevel@tonic-gateCCUNBOUND = $($(MACH)_CCUNBOUND) 4507c478bd9Sstevel@tonic-gate 4517c478bd9Sstevel@tonic-gate# 4527c478bd9Sstevel@tonic-gate# compiler '-xarch' flag. This is here to centralize it and make it 4537c478bd9Sstevel@tonic-gate# overridable for testing. 4540bb07399SNick Toddsparc_XARCH= -m32 4550bb07399SNick Toddsparcv9_XARCH= -m64 4569c05409fSRichard Lowei386_XARCH= -m32 4570bb07399SNick Toddamd64_XARCH= -m64 -Ui386 -U__i386 4587c478bd9Sstevel@tonic-gate 4597c478bd9Sstevel@tonic-gate# assembler '-xarch' flag. Different from compiler '-xarch' flag. 46060c80770Scraigmsparc_AS_XARCH= -xarch=v8plus 4617c478bd9Sstevel@tonic-gatesparcv9_AS_XARCH= -xarch=v9 4627c478bd9Sstevel@tonic-gatei386_AS_XARCH= 4637c478bd9Sstevel@tonic-gateamd64_AS_XARCH= -xarch=amd64 -P -Ui386 -U__i386 4647c478bd9Sstevel@tonic-gate 4657c478bd9Sstevel@tonic-gate# 4667c478bd9Sstevel@tonic-gate# These flags define what we need to be 'standalone' i.e. -not- part 4677c478bd9Sstevel@tonic-gate# of the rather more cosy userland environment. This basically means 4687c478bd9Sstevel@tonic-gate# the kernel. 4697c478bd9Sstevel@tonic-gate# 4707c478bd9Sstevel@tonic-gate# XX64 future versions of gcc will make -mcmodel=kernel imply -mno-red-zone 4717c478bd9Sstevel@tonic-gate# 47202e56f3fSwesolowssparc_STAND_FLAGS= -_gcc=-ffreestanding 47302e56f3fSwesolowssparcv9_STAND_FLAGS= -_gcc=-ffreestanding 4748528fe16SRichard Lowe# Disabling MMX also disables 3DNow, disabling SSE also disables all later 4758528fe16SRichard Lowe# additions to SSE (SSE2, AVX ,etc.) 4768528fe16SRichard LoweNO_SIMD= -_gcc=-mno-mmx -_gcc=-mno-sse 4778528fe16SRichard Lowei386_STAND_FLAGS= -_gcc=-ffreestanding $(NO_SIMD) 4788528fe16SRichard Loweamd64_STAND_FLAGS= -xmodel=kernel $(NO_SIMD) 4797c478bd9Sstevel@tonic-gate 4807c478bd9Sstevel@tonic-gateSAVEARGS= -Wu,-save_args 4817c478bd9Sstevel@tonic-gateamd64_STAND_FLAGS += $(SAVEARGS) 4827c478bd9Sstevel@tonic-gate 4837c478bd9Sstevel@tonic-gateSTAND_FLAGS_32 = $($(MACH)_STAND_FLAGS) 4847c478bd9Sstevel@tonic-gateSTAND_FLAGS_64 = $($(MACH64)_STAND_FLAGS) 4857c478bd9Sstevel@tonic-gate 4867c478bd9Sstevel@tonic-gate# 4877c478bd9Sstevel@tonic-gate# disable the incremental linker 4887c478bd9Sstevel@tonic-gateILDOFF= -xildoff 4897c478bd9Sstevel@tonic-gate# 49022337b4bSrieXFFLAG= -xF=%all 4917c478bd9Sstevel@tonic-gateXESS= -xs 492d69cdb36SRichard LoweXSTRCONST= -xstrconst 4937c478bd9Sstevel@tonic-gate 4947c478bd9Sstevel@tonic-gate# 4957c478bd9Sstevel@tonic-gate# turn warnings into errors (C) 4967c478bd9Sstevel@tonic-gateCERRWARN = -errtags=yes -errwarn=%all 4977c478bd9Sstevel@tonic-gateCERRWARN += -erroff=E_EMPTY_TRANSLATION_UNIT 4987c478bd9Sstevel@tonic-gateCERRWARN += -erroff=E_STATEMENT_NOT_REACHED 4997014882cSRichard Lowe 5007014882cSRichard LoweCERRWARN += -_gcc=-Wno-missing-braces 5017014882cSRichard LoweCERRWARN += -_gcc=-Wno-sign-compare 5027014882cSRichard LoweCERRWARN += -_gcc=-Wno-unknown-pragmas 5037014882cSRichard LoweCERRWARN += -_gcc=-Wno-unused-parameter 5047014882cSRichard LoweCERRWARN += -_gcc=-Wno-missing-field-initializers 5057014882cSRichard Lowe 5067014882cSRichard Lowe# Unfortunately, this option can misfire very easily and unfixably. 5077014882cSRichard LoweCERRWARN += -_gcc=-Wno-array-bounds 5087014882cSRichard Lowe 5093873d743SRichard LoweCNOWARN_UNINIT = -_gcc=-Wno-maybe-uninitialized 5106a3e8e86SRichard Lowe 5111f5207b7SJohn LevonCERRWARN += -_smatch=-p=illumos_user 5121f5207b7SJohn Levoninclude $(SRC)/Makefile.smatch 5131f5207b7SJohn Levon 5147c478bd9Sstevel@tonic-gate# 5157c478bd9Sstevel@tonic-gate# turn warnings into errors (C++) 5168e0c8248SAndrew StormontCCERRWARN = -errtags=yes -errwarn=%all 5178e0c8248SAndrew StormontCCERRWARN += -erroff=E_EMPTY_TRANSLATION_UNIT 5188e0c8248SAndrew StormontCCERRWARN += -erroff=E_STATEMENT_NOT_REACHED 5198e0c8248SAndrew Stormont 5208e0c8248SAndrew StormontCCERRWARN += -_gcc=-Wno-missing-braces 5218e0c8248SAndrew StormontCCERRWARN += -_gcc=-Wno-sign-compare 5228e0c8248SAndrew StormontCCERRWARN += -_gcc=-Wno-unknown-pragmas 5238e0c8248SAndrew StormontCCERRWARN += -_gcc=-Wno-unused-parameter 5248e0c8248SAndrew StormontCCERRWARN += -_gcc=-Wno-missing-field-initializers 5257c478bd9Sstevel@tonic-gate 5261e8d79d2SYuri Pankov# C standard 527bd0ce624SYuri PankovCSTD_GNU89= -xc99=%none 528bd0ce624SYuri PankovCSTD_GNU99= -xc99=%all 529bd0ce624SYuri PankovCSTD= $(CSTD_GNU89) 5307c478bd9Sstevel@tonic-gate 5317c478bd9Sstevel@tonic-gate# In most places, assignments to these macros should be appended with += 532b819cea2SGordon Ross# (CPPFLAGS.first allows values to be prepended to CPPFLAGS). 533face03d9Spetedesparc_CFLAGS= $(sparc_XARCH) $(CCSTATICSYM) 534ac204d0dSpetedesparcv9_CFLAGS= $(sparcv9_XARCH) -dalign $(CCVERBOSE) $(V9ABIWARN) $(CCREGSYM) \ 535ac204d0dSpetede $(CCSTATICSYM) 5367c478bd9Sstevel@tonic-gatei386_CFLAGS= $(i386_XARCH) 5377c478bd9Sstevel@tonic-gateamd64_CFLAGS= $(amd64_XARCH) 5387c478bd9Sstevel@tonic-gate 5397c478bd9Sstevel@tonic-gatesparc_ASFLAGS= $(sparc_AS_XARCH) 5407c478bd9Sstevel@tonic-gatesparcv9_ASFLAGS=$(sparcv9_AS_XARCH) 5417c478bd9Sstevel@tonic-gatei386_ASFLAGS= $(i386_AS_XARCH) 5427c478bd9Sstevel@tonic-gateamd64_ASFLAGS= $(amd64_AS_XARCH) 5437c478bd9Sstevel@tonic-gate 5447c478bd9Sstevel@tonic-gate# 5457c478bd9Sstevel@tonic-gatesparc_COPTFLAG= -xO3 5467c478bd9Sstevel@tonic-gatesparcv9_COPTFLAG= -xO3 5477c478bd9Sstevel@tonic-gatei386_COPTFLAG= -O 548662492f5Ssherrymamd64_COPTFLAG= -xO3 5497c478bd9Sstevel@tonic-gate 5507c478bd9Sstevel@tonic-gateCOPTFLAG= $($(MACH)_COPTFLAG) 5517c478bd9Sstevel@tonic-gateCOPTFLAG64= $($(MACH64)_COPTFLAG) 5527c478bd9Sstevel@tonic-gate 5537c478bd9Sstevel@tonic-gate# When -g is used, the compiler globalizes static objects 5547c478bd9Sstevel@tonic-gate# (gives them a unique prefix). Disable that. 5557c478bd9Sstevel@tonic-gateCNOGLOBAL= -W0,-noglobal 5567c478bd9Sstevel@tonic-gate 55796ccc8cbSesaxe# Direct the Sun Studio compiler to use a static globalization prefix based on the 55896ccc8cbSesaxe# name of the module rather than something unique. Otherwise, objects 55996ccc8cbSesaxe# will not build deterministically, as subsequent compilations of identical 56096ccc8cbSesaxe# source will yeild objects that always look different. 56196ccc8cbSesaxe# 56296ccc8cbSesaxe# In the same spirit, this will also remove the date from the N_OPT stab. 56396ccc8cbSesaxeCGLOBALSTATIC= -W0,-xglobalstatic 56496ccc8cbSesaxe 56502e56f3fSwesolows# Sometimes we want all symbols and types in debugging information even 56602e56f3fSwesolows# if they aren't used. 567*3cac7b0dSAndy FiddamanCALLSYMS= -_gcc=-fno-eliminate-unused-debug-symbols \ 568*3cac7b0dSAndy Fiddaman -_gcc=-fno-eliminate-unused-debug-types 56902e56f3fSwesolows 570ac204d0dSpetede# 571299e09deSRichard Lowe# We force the compilers to generate the debugging information best understood 572299e09deSRichard Lowe# by the CTF tools. With Sun Studio this is stabs due to bugs in the Studio 573299e09deSRichard Lowe# compilers. With GCC this is DWARF v2. 574ac204d0dSpetede# 575d7976f11SToomas SoomeDEBUGFORMAT= -_cc=-xdebugformat=stabs -_gcc=-gdwarf-2 -_gcc10=-gstrict-dwarf 576ac204d0dSpetede 5777c478bd9Sstevel@tonic-gate# 578299e09deSRichard Lowe# Ask the compiler to include debugging information 5797c478bd9Sstevel@tonic-gate# 580299e09deSRichard LoweCCGDEBUG= -g $(DEBUGFORMAT) 581299e09deSRichard Lowe 582299e09deSRichard Lowe# 583299e09deSRichard Lowe# Flags used to build in debug mode for ctf generation. 584299e09deSRichard Lowe# 585299e09deSRichard LoweCTF_FLAGS_sparc = $(CCGDEBUG) -Wc,-Qiselect-T1 $(CSTD) $(CNOGLOBAL) 586299e09deSRichard LoweCTF_FLAGS_i386 = $(CCGDEBUG) $(CSTD) $(CNOGLOBAL) 5872d4be7aaSRichard Lowe 5882d4be7aaSRichard LoweCTF_FLAGS_sparcv9 = $(CTF_FLAGS_sparc) 5892d4be7aaSRichard LoweCTF_FLAGS_amd64 = $(CTF_FLAGS_i386) 5902d4be7aaSRichard Lowe 5912d4be7aaSRichard Lowe# Sun Studio produces broken userland code when saving arguments. 5922d4be7aaSRichard Lowe$(__GNUC)CTF_FLAGS_amd64 += $(SAVEARGS) 5932d4be7aaSRichard Lowe 594299e09deSRichard LoweCTF_FLAGS_32 = $(CTF_FLAGS_$(MACH)) 595299e09deSRichard LoweCTF_FLAGS_64 = $(CTF_FLAGS_$(MACH64)) 5962d4be7aaSRichard LoweCTF_FLAGS = $(CTF_FLAGS_32) 5977c478bd9Sstevel@tonic-gate 5987c478bd9Sstevel@tonic-gate# 5997c478bd9Sstevel@tonic-gate# Flags used with genoffsets 6007c478bd9Sstevel@tonic-gate# 601299e09deSRichard LoweGENOFFSETS_FLAGS = $(CALLSYMS) 6027c478bd9Sstevel@tonic-gate 6037c478bd9Sstevel@tonic-gateOFFSETS_CREATE = $(GENOFFSETS) -s $(CTFSTABS) -r $(CTFCONVERT) \ 604299e09deSRichard Lowe $(CW) --noecho $(CW_CC_COMPILERS) -- $(GENOFFSETS_FLAGS) \ 605299e09deSRichard Lowe $(CFLAGS) $(CPPFLAGS) 6067c478bd9Sstevel@tonic-gate 6077c478bd9Sstevel@tonic-gateOFFSETS_CREATE64 = $(GENOFFSETS) -s $(CTFSTABS) -r $(CTFCONVERT) \ 608299e09deSRichard Lowe $(CW) --noecho $(CW_CC_COMPILERS) -- $(GENOFFSETS_FLAGS) \ 609299e09deSRichard Lowe $(CFLAGS64) $(CPPFLAGS) 6107c478bd9Sstevel@tonic-gate 6117c478bd9Sstevel@tonic-gate# 6127c478bd9Sstevel@tonic-gate# tradeoff time for space (smaller is better) 6137c478bd9Sstevel@tonic-gate# 614ac204d0dSpetedesparc_SPACEFLAG = -xspace -W0,-Lt 615ac204d0dSpetedesparcv9_SPACEFLAG = -xspace -W0,-Lt 6167c478bd9Sstevel@tonic-gatei386_SPACEFLAG = -xspace 6177c478bd9Sstevel@tonic-gateamd64_SPACEFLAG = 6187c478bd9Sstevel@tonic-gate 6197c478bd9Sstevel@tonic-gateSPACEFLAG = $($(MACH)_SPACEFLAG) 6207c478bd9Sstevel@tonic-gateSPACEFLAG64 = $($(MACH64)_SPACEFLAG) 6217c478bd9Sstevel@tonic-gate 622ac204d0dSpetede# 623ac204d0dSpetede# The Sun Studio 11 compiler has changed the behaviour of integer 624ac204d0dSpetede# wrap arounds and so a flag is needed to use the legacy behaviour 625ac204d0dSpetede# (without this flag panics/hangs could be exposed within the source). 626ac204d0dSpetede# 627ac204d0dSpetedesparc_IROPTFLAG = -W2,-xwrap_int 628ac204d0dSpetedesparcv9_IROPTFLAG = -W2,-xwrap_int 629ac204d0dSpetedei386_IROPTFLAG = 630ac204d0dSpetedeamd64_IROPTFLAG = 631ac204d0dSpetede 632ac204d0dSpetedeIROPTFLAG = $($(MACH)_IROPTFLAG) 633ac204d0dSpetedeIROPTFLAG64 = $($(MACH64)_IROPTFLAG) 634ac204d0dSpetede 6357c478bd9Sstevel@tonic-gatesparc_XREGSFLAG = -xregs=no%appl 6367c478bd9Sstevel@tonic-gatesparcv9_XREGSFLAG = -xregs=no%appl 6377c478bd9Sstevel@tonic-gatei386_XREGSFLAG = 6387c478bd9Sstevel@tonic-gateamd64_XREGSFLAG = 6397c478bd9Sstevel@tonic-gate 6407c478bd9Sstevel@tonic-gateXREGSFLAG = $($(MACH)_XREGSFLAG) 6417c478bd9Sstevel@tonic-gateXREGSFLAG64 = $($(MACH64)_XREGSFLAG) 6427c478bd9Sstevel@tonic-gate 643d69cdb36SRichard Lowe# dmake SOURCEDEBUG=yes ... enables source-level debugging information, and 644d69cdb36SRichard Lowe# avoids stripping it. 645d69cdb36SRichard LoweSOURCEDEBUG = $(POUND_SIGN) 646d69cdb36SRichard LoweSRCDBGBLD = $(SOURCEDEBUG:yes=) 647d69cdb36SRichard Lowe 648d69cdb36SRichard Lowe# 649d69cdb36SRichard Lowe# These variables are intended ONLY for use by developers to safely pass extra 650d69cdb36SRichard Lowe# flags to the compilers without unintentionally overriding Makefile-set 651d69cdb36SRichard Lowe# flags. They should NEVER be set to any value in a Makefile. 652d69cdb36SRichard Lowe# 653d69cdb36SRichard Lowe# They come last in the associated FLAGS variable such that they can 654d69cdb36SRichard Lowe# explicitly override things if necessary, there are gaps in this, but it's 655d69cdb36SRichard Lowe# the best we can manage. 656d69cdb36SRichard Lowe# 657d69cdb36SRichard LoweCUSERFLAGS = 658d69cdb36SRichard LoweCUSERFLAGS64 = $(CUSERFLAGS) 659d69cdb36SRichard LoweCCUSERFLAGS = 660d69cdb36SRichard LoweCCUSERFLAGS64 = $(CCUSERFLAGS) 661d69cdb36SRichard Lowe 662d69cdb36SRichard LoweCSOURCEDEBUGFLAGS = 663d69cdb36SRichard LoweCCSOURCEDEBUGFLAGS = 664299e09deSRichard Lowe$(SRCDBGBLD)CSOURCEDEBUGFLAGS = $(CCGDEBUG) -xs 665299e09deSRichard Lowe$(SRCDBGBLD)CCSOURCEDEBUGFLAGS = $(CCGDEBUG) -xs 666d69cdb36SRichard Lowe 6677c478bd9Sstevel@tonic-gateCFLAGS= $(COPTFLAG) $($(MACH)_CFLAGS) $(SPACEFLAG) $(CCMODE) \ 668bd0ce624SYuri Pankov $(ILDOFF) $(CERRWARN) $(CSTD) $(CCUNBOUND) $(IROPTFLAG) \ 669b6c711ccSRichard Lowe $(CGLOBALSTATIC) $(CCNOAUTOINLINE) $(CCNOREORDER) \ 67092c1a611SBryan Cantrill $(CCNOAGGRESSIVELOOPS) \ 671b6c711ccSRichard Lowe $(CSOURCEDEBUGFLAGS) $(CUSERFLAGS) 6727c478bd9Sstevel@tonic-gateCFLAGS64= $(COPTFLAG64) $($(MACH64)_CFLAGS) $(SPACEFLAG64) $(CCMODE64) \ 673bd0ce624SYuri Pankov $(ILDOFF) $(CERRWARN) $(CSTD) $(CCUNBOUND) $(IROPTFLAG64) \ 674b6c711ccSRichard Lowe $(CGLOBALSTATIC) $(CCNOAUTOINLINE) $(CCNOREORDER) \ 67592c1a611SBryan Cantrill $(CCNOAGGRESSIVELOOPS) \ 676b6c711ccSRichard Lowe $(CSOURCEDEBUGFLAGS) $(CUSERFLAGS64) 677ac204d0dSpetede# 678ac204d0dSpetede# Flags that are used to build parts of the code that are subsequently 679ac204d0dSpetede# run on the build machine (also known as the NATIVE_BUILD). 680ac204d0dSpetede# 6817c478bd9Sstevel@tonic-gateNATIVE_CFLAGS= $(COPTFLAG) $($(NATIVE_MACH)_CFLAGS) $(CCMODE) \ 682bd0ce624SYuri Pankov $(ILDOFF) $(CERRWARN) $(CSTD) $($(NATIVE_MACH)_CCUNBOUND) \ 683d69cdb36SRichard Lowe $(IROPTFLAG) $(CGLOBALSTATIC) $(CCNOAUTOINLINE) \ 684b6c711ccSRichard Lowe $(CCNOREORDER) $(CSOURCEDEBUGFLAGS) $(CUSERFLAGS) 6857c478bd9Sstevel@tonic-gate 686a99cb961SToomas SoomeNATIVE_CCFLAGS= $(CCOPTFLAG) $($(NATIVE_MACH)_CCFLAGS) $(CCSOURCEDEBUGFLAGS) \ 687a99cb961SToomas Soome $(CCUSERFLAGS) 688a99cb961SToomas Soome 68903c3ec9aSDan McDonaldNATIVE_CFLAGS64= $(COPTFLAG64) $($(NATIVE_MACH64)_CFLAGS) $(CCMODE64) \ 69003c3ec9aSDan McDonald $(ILDOFF) $(CERRWARN) $(CSTD) $($(NATIVE_MACH64)_CCUNBOUND) \ 69103c3ec9aSDan McDonald $(IROPTFLAG64) $(CGLOBALSTATIC) $(CCNOAUTOINLINE) \ 69203c3ec9aSDan McDonald $(CCNOREORDER) $(CSOURCEDEBUGFLAGS) $(CUSERFLAGS64) 69303c3ec9aSDan McDonald 69403c3ec9aSDan McDonaldNATIVE_CCFLAGS64= $(CCOPTFLAG64) $($(NATIVE_MACH64)_CCFLAGS) \ 69503c3ec9aSDan McDonald $(CCSOURCEDEBUGFLAGS) $(CCUSERFLAGS64) 69603c3ec9aSDan McDonald 6977c478bd9Sstevel@tonic-gateDTEXTDOM=-DTEXT_DOMAIN=\"$(TEXT_DOMAIN)\" # For messaging. 6987c478bd9Sstevel@tonic-gateDTS_ERRNO=-D_TS_ERRNO 699b819cea2SGordon RossCPPFLAGS.first= # Please keep empty. Only lower makefiles should set this. 7007c478bd9Sstevel@tonic-gateCPPFLAGS.master=$(DTEXTDOM) $(DTS_ERRNO) \ 701494f7e12SKeith M Wesolowski $(ENVCPPFLAGS1) $(ENVCPPFLAGS2) $(ENVCPPFLAGS3) $(ENVCPPFLAGS4) \ 702494f7e12SKeith M Wesolowski $(ADJUNCT_PROTO:%=-I%/usr/include) 703494f7e12SKeith M WesolowskiCPPFLAGS.native=$(ENVCPPFLAGS1) $(ENVCPPFLAGS2) $(ENVCPPFLAGS3) \ 704494f7e12SKeith M Wesolowski $(ENVCPPFLAGS4) -I$(NATIVE_ADJUNCT)/include 705b819cea2SGordon RossCPPFLAGS= $(CPPFLAGS.first) $(CPPFLAGS.master) 706b819cea2SGordon RossAS_CPPFLAGS= $(CPPFLAGS.first) $(CPPFLAGS.master) 70751396a8eSPeter TribbleJAVAFLAGS= -source 7 -target 7 -Xlint:deprecation,-options 70851396a8eSPeter Tribble$(BLD_JAVA_11)JAVAFLAGS= -source 7 -target 7 -Xlint:-options 7097c478bd9Sstevel@tonic-gate 7107c478bd9Sstevel@tonic-gate# 7117c478bd9Sstevel@tonic-gate# For source message catalogue 7127c478bd9Sstevel@tonic-gate# 7137c478bd9Sstevel@tonic-gate.SUFFIXES: $(SUFFIXES) .i .po 7147c478bd9Sstevel@tonic-gateMSGROOT= $(ROOT)/catalog 7157c478bd9Sstevel@tonic-gateMSGDOMAIN= $(MSGROOT)/$(TEXT_DOMAIN) 7167c478bd9Sstevel@tonic-gateMSGDOMAINPOFILE = $(MSGDOMAIN)/$(POFILE) 717d69cdb36SRichard LoweDCMSGDOMAIN= $(MSGROOT)/LC_TIME/$(TEXT_DOMAIN) 7187c478bd9Sstevel@tonic-gateDCMSGDOMAINPOFILE = $(DCMSGDOMAIN)/$(DCFILE:.dc=.po) 7197c478bd9Sstevel@tonic-gate 7207c478bd9Sstevel@tonic-gateCLOBBERFILES += $(POFILE) $(POFILES) 7217c478bd9Sstevel@tonic-gateCOMPILE.cpp= $(CC) -E -C $(CFLAGS) $(CPPFLAGS) 7227c478bd9Sstevel@tonic-gateXGETTEXT= /usr/bin/xgettext 7237c478bd9Sstevel@tonic-gateXGETFLAGS= -c TRANSLATION_NOTE 72414843421SMatthew AhrensGNUXGETTEXT= /usr/gnu/bin/xgettext 72514843421SMatthew AhrensGNUXGETFLAGS= --add-comments=TRANSLATION_NOTE --keyword=_ \ 72614843421SMatthew Ahrens --strict --no-location --omit-header 7277c478bd9Sstevel@tonic-gateBUILD.po= $(XGETTEXT) $(XGETFLAGS) -d $(<F) $<.i ;\ 7287c478bd9Sstevel@tonic-gate $(RM) $@ ;\ 729a778b211Scarlsonj $(SED) "/^domain/d" < $(<F).po > $@ ;\ 7307c478bd9Sstevel@tonic-gate $(RM) $(<F).po $<.i 731a778b211Scarlsonj 7327c478bd9Sstevel@tonic-gate# 7337c478bd9Sstevel@tonic-gate# This is overwritten by local Makefile when PROG is a list. 7347c478bd9Sstevel@tonic-gate# 7357c478bd9Sstevel@tonic-gatePOFILE= $(PROG).po 7367c478bd9Sstevel@tonic-gate 737a99cb961SToomas Soomesparc_CCFLAGS= $(sparc_XARCH) -cg92 -compat=4 \ 7387c478bd9Sstevel@tonic-gate -Qoption ccfe -messages=no%anachronism \ 7397c478bd9Sstevel@tonic-gate $(CCERRWARN) 7407c478bd9Sstevel@tonic-gatesparcv9_CCFLAGS= $(sparcv9_XARCH) -dalign -compat=5 \ 7417c478bd9Sstevel@tonic-gate -Qoption ccfe -messages=no%anachronism \ 7427c478bd9Sstevel@tonic-gate -Qoption ccfe -features=no%conststrings \ 7437c478bd9Sstevel@tonic-gate $(CCCREGSYM) \ 7447c478bd9Sstevel@tonic-gate $(CCERRWARN) 745a99cb961SToomas Soomei386_CCFLAGS= $(i386_XARCH) -compat=4 \ 7467c478bd9Sstevel@tonic-gate -Qoption ccfe -messages=no%anachronism \ 7477c478bd9Sstevel@tonic-gate -Qoption ccfe -features=no%conststrings \ 7487c478bd9Sstevel@tonic-gate $(CCERRWARN) 7497c478bd9Sstevel@tonic-gateamd64_CCFLAGS= $(amd64_XARCH) -compat=5 \ 7507c478bd9Sstevel@tonic-gate -Qoption ccfe -messages=no%anachronism \ 7517c478bd9Sstevel@tonic-gate -Qoption ccfe -features=no%conststrings \ 7527c478bd9Sstevel@tonic-gate $(CCERRWARN) 7537c478bd9Sstevel@tonic-gate 7547c478bd9Sstevel@tonic-gatesparc_CCOPTFLAG= -O 7557c478bd9Sstevel@tonic-gatesparcv9_CCOPTFLAG= -O 7567c478bd9Sstevel@tonic-gatei386_CCOPTFLAG= -O 7577c478bd9Sstevel@tonic-gateamd64_CCOPTFLAG= -O 7587c478bd9Sstevel@tonic-gate 7597c478bd9Sstevel@tonic-gateCCOPTFLAG= $($(MACH)_CCOPTFLAG) 7607c478bd9Sstevel@tonic-gateCCOPTFLAG64= $($(MACH64)_CCOPTFLAG) 761d69cdb36SRichard LoweCCFLAGS= $(CCOPTFLAG) $($(MACH)_CCFLAGS) $(CCSOURCEDEBUGFLAGS) \ 762d69cdb36SRichard Lowe $(CCUSERFLAGS) 763d69cdb36SRichard LoweCCFLAGS64= $(CCOPTFLAG64) $($(MACH64)_CCFLAGS) $(CCSOURCEDEBUGFLAGS) \ 764d69cdb36SRichard Lowe $(CCUSERFLAGS64) 76524da5b34Srie 7664c06356bSdh# 7674c06356bSdh# 7684c06356bSdh# 769d69cdb36SRichard LoweELFWRAP_FLAGS = 7704c06356bSdhELFWRAP_FLAGS64 = -64 7714c06356bSdh 772