Print this page
7661 illumos should provide 64bit perl modules (for omni)
Split |
Close |
Expand all |
Collapse all |
--- old/usr/src/tools/env/omnios-illumos-omnios.sh
+++ new/usr/src/tools/env/omnios-illumos-omnios.sh
1 1 #
2 2 # CDDL HEADER START
3 3 #
4 4 # The contents of this file are subject to the terms of the
5 5 # Common Development and Distribution License (the "License").
6 6 # You may not use this file except in compliance with the License.
7 7 #
8 8 # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 9 # or http://www.opensolaris.org/os/licensing.
10 10 # See the License for the specific language governing permissions
11 11 # and limitations under the License.
12 12 #
13 13 # When distributing Covered Code, include this CDDL HEADER in each
14 14 # file and include the License file at usr/src/OPENSOLARIS.LICENSE.
↓ open down ↓ |
14 lines elided |
↑ open up ↑ |
15 15 # If applicable, add the following below this CDDL HEADER, with the
16 16 # fields enclosed by brackets "[]" replaced with your own identifying
17 17 # information: Portions Copyright [yyyy] [name of copyright owner]
18 18 #
19 19 # CDDL HEADER END
20 20 #
21 21 # Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
22 22 # Copyright 2015 Nexenta Systems, Inc. All rights reserved.
23 23 # Copyright 2012 Joshua M. Clulow <josh@sysmgr.org>
24 24 # Copyright 2016, OmniTI Computer Consulting, Inc. All rights reserved.
25 +# Copyright 2016 RackTop Systems.
25 26 #
26 27
27 28 # Configuration variables for the runtime environment of the nightly
28 29 # build script and other tools for construction and packaging of
29 30 # releases.
30 31 # This example is suitable for building an illumos workspace, which
31 32 # will contain the resulting archives. It is based off the onnv
32 33 # release. It sets NIGHTLY_OPTIONS to make nightly do:
33 34 # DEBUG build only (-D, -F)
34 35 # do not bringover (aka. pull or clone) from the parent (-n)
35 36 # runs 'make check' (-C)
36 37 # checks for new interfaces in libraries (-A)
37 38 # runs lint in usr/src (-l plus the LINTDIRS variable)
38 39 # sends mail on completion (-m and the MAILTO variable)
39 40 # creates packages for PIT/RE (-p)
40 41 # checks for changes in ELF runpaths (-r)
41 42 # build and use this workspace's tools in $SRC/tools (-t)
42 43 #
43 44 # - This file is sourced by "bldenv.sh" and "nightly.sh" and should not
44 45 # be executed directly.
45 46 # - This script is only interpreted by ksh93 and explicitly allows the
46 47 # use of ksh93 language extensions.
47 48 #
48 49 export NIGHTLY_OPTIONS='-FnCDAlmprt'
49 50
50 51 #
51 52 # -- PLEASE READ THIS --
52 53 #
53 54 # The variables GATE and CODEMGR_WS must always be customised to
54 55 # match your workspace/gate location!!
55 56 #
56 57 # -- PLEASE READ THIS --
57 58 #
58 59
59 60 # This is a variable for the rest of the script - GATE doesn't matter to
60 61 # nightly itself
61 62 export GATE='testws'
62 63
63 64 # CODEMGR_WS - where is your workspace at (or what should nightly name it)
64 65 export CODEMGR_WS="$HOME/ws/$GATE"
65 66
66 67 # Maximum number of dmake jobs. The recommended number is 2 + NCPUS,
67 68 # where NCPUS is the number of logical CPUs on your build system.
68 69 function maxjobs
69 70 {
70 71 nameref maxjobs=$1
71 72 integer ncpu
72 73 integer -r min_mem_per_job=512 # minimum amount of memory for a job
73 74
74 75 ncpu=$(builtin getconf ; getconf 'NPROCESSORS_ONLN')
75 76 (( maxjobs=ncpu + 2 ))
76 77
77 78 # Throttle number of parallel jobs launched by dmake to a value which
78 79 # gurantees that all jobs have enough memory. This was added to avoid
79 80 # excessive paging/swapping in cases of virtual machine installations
80 81 # which have lots of CPUs but not enough memory assigned to handle
81 82 # that many parallel jobs
82 83 if [[ $(/usr/sbin/prtconf 2>'/dev/null') == ~(E)Memory\ size:\ ([[:digit:]]+)\ Megabytes ]] ; then
83 84 integer max_jobs_per_memory # parallel jobs which fit into physical memory
84 85 integer physical_memory # physical memory installed
85 86
86 87 # The array ".sh.match" contains the contents of capturing
87 88 # brackets in the last regex, .sh.match[1] will contain
88 89 # the value matched by ([[:digit:]]+), i.e. the amount of
89 90 # memory installed
90 91 physical_memory="10#${.sh.match[1]}"
91 92
92 93 ((
93 94 max_jobs_per_memory=round(physical_memory/min_mem_per_job) ,
94 95 maxjobs=fmax(2, fmin(maxjobs, max_jobs_per_memory))
95 96 ))
96 97 fi
97 98
98 99 return 0
99 100 }
100 101
101 102 maxjobs DMAKE_MAX_JOBS # "DMAKE_MAX_JOBS" passed as ksh(1) name reference
102 103 export DMAKE_MAX_JOBS
103 104
104 105 # path to onbld tool binaries
105 106 ONBLD_BIN='/opt/onbld/bin'
106 107
107 108 # PARENT_WS is used to determine the parent of this workspace. This is
108 109 # for the options that deal with the parent workspace (such as where the
109 110 # proto area will go).
110 111 export PARENT_WS=''
111 112
112 113 # The bringover, if any, is done as STAFFER.
113 114 # Set STAFFER to your own login as gatekeeper or developer
114 115 # The point is to use group "staff" and avoid referencing the parent
115 116 # workspace as root.
116 117 # Some scripts optionally send mail messages to MAILTO.
117 118 #
118 119 export STAFFER="$LOGNAME"
119 120 export MAILTO="$STAFFER"
120 121
121 122 # If you wish the mail messages to be From: an arbitrary address, export
122 123 # MAILFROM.
123 124 #export MAILFROM="user@example.com"
124 125
125 126 # The project (see project(4)) under which to run this build. If not
126 127 # specified, the build is simply run in a new task in the current project.
127 128 export BUILD_PROJECT=''
128 129
129 130 # You should not need to change the next three lines
130 131 export ATLOG="$CODEMGR_WS/log"
131 132 export LOGFILE="$ATLOG/nightly.log"
132 133 export MACH="$(uname -p)"
133 134
134 135 #
135 136 # The following two macros are the closed/crypto binaries. Once
136 137 # Illumos has totally freed itself, we can remove these references.
137 138 # Until then, the developer/illumos-closed package in OmniOS places these
138 139 # in the location below.
139 140 #
140 141 # Location of encumbered binaries.
141 142 export ON_CLOSED_BINS="/opt/onbld/closed"
142 143
143 144 # REF_PROTO_LIST - for comparing the list of stuff in your proto area
144 145 # with. Generally this should be left alone, since you want to see differences
145 146 # from your parent (the gate).
146 147 #
147 148 export REF_PROTO_LIST="$PARENT_WS/usr/src/proto_list_${MACH}"
148 149
149 150
150 151 export ROOT="$CODEMGR_WS/proto/root_${MACH}"
151 152 export SRC="$CODEMGR_WS/usr/src"
152 153 export MULTI_PROTO="no"
153 154
154 155 #
155 156 # build environment variables, including version info for mcs, motd,
156 157 # motd, uname and boot messages. Mostly you shouldn't change this except
157 158 # when the release slips (nah) or you move an environment file to a new
158 159 # release
159 160 #
160 161 #VERSION=$GATE
161 162
162 163 # VERSION for OmniOS uses the git ID of the repo. Don't use this if you aren't
163 164 # using git for $GATE, or if $GATE isn't created yet.
164 165 export VERSION=omnios-`cd $CODEMGR_WS; git branch | awk '{print $2}'`-`cd $CODEMGR_WS; git log --pretty=format:'%h' -n 1`
165 166
166 167 #
167 168 # the RELEASE and RELEASE_DATE variables are set in Makefile.master;
168 169 # there might be special reasons to override them here, but that
169 170 # should not be the case in general
170 171 #
171 172 # export RELEASE='5.11'
172 173 # export RELEASE_DATE='October 2007'
173 174
174 175 # proto area in parent for optionally depositing a copy of headers and
175 176 # libraries corresponding to the protolibs target
176 177 # not applicable given the NIGHTLY_OPTIONS
177 178 #
178 179 export PARENT_ROOT="$PARENT_WS/proto/root_$MACH"
179 180 export PARENT_TOOLS_ROOT="$PARENT_WS/usr/src/tools/proto/root_$MACH-nd"
180 181
181 182 # Package creation variables. You probably shouldn't change these,
182 183 # either.
183 184 #
184 185 # PKGARCHIVE determines where the repository will be created.
185 186 #
186 187 # PKGPUBLISHER_REDIST controls the publisher setting for the repository.
187 188 #
188 189 export PKGARCHIVE="${CODEMGR_WS}/packages/${MACH}/nightly"
189 190 # export PKGPUBLISHER_REDIST='on-redist'
190 191
191 192 # Package manifest format version.
192 193 export PKGFMT_OUTPUT='v1'
193 194
194 195 # we want make to do as much as it can, just in case there's more than
195 196 # one problem.
196 197 export MAKEFLAGS='k'
197 198
198 199 # Magic variables to prevent the devpro compilers/teamware from checking
199 200 # for updates or sending mail back to devpro on every use.
200 201 export SUNW_NO_UPDATE_NOTIFY='1'
201 202 export UT_NO_USAGE_TRACKING='1'
202 203
203 204 # Build tools - don't change these unless you know what you're doing. These
204 205 # variables allows you to get the compilers and onbld files locally.
205 206 # Set BUILD_TOOLS to pull everything from one location.
206 207 # Alternately, you can set ONBLD_TOOLS to where you keep the contents of
207 208 # SUNWonbld and SPRO_ROOT to where you keep the compilers. SPRO_VROOT
208 209 # exists to make it easier to test new versions of the compiler.
209 210 #
210 211 # In OmniOS, we only use SPRO_ROOT for lint, which is in the
211 212 # developer/sunstudio12.1 package.
212 213 export BUILD_TOOLS='/opt'
213 214 export SPRO_ROOT='/opt/sunstudio12.1'
214 215
215 216 # Since we only use SPRO_ROOT for lint, we need to tell nightly to use gcc.
216 217 GCC_ROOT=/opt/gcc-4.4.4/; export GCC_ROOT
217 218 __GNUC=""; export __GNUC
218 219 CW_NO_SHADOW=1; export CW_NO_SHADOW
219 220 ONLY_LINT_DEFS=-I${SPRO_ROOT}/sunstudio12.1/prod/include/lint; export ONLY_LINT_DEFS
220 221
221 222 # This goes along with lint - it is a series of the form "A [y|n]" which
222 223 # means "go to directory A and run 'make lint'" Then mail me (y) the
223 224 # difference in the lint output. 'y' should only be used if the area you're
224 225 # linting is actually lint clean or you'll get lots of mail.
225 226 # You shouldn't need to change this though.
226 227 #export LINTDIRS="$SRC y"
227 228
228 229 # Set this flag to 'n' to disable the use of 'checkpaths'. The default,
229 230 # if the 'N' option is not specified, is to run this test.
230 231 #CHECK_PATHS='y'
231 232
232 233 # POST_NIGHTLY can be any command to be run at the end of nightly. See
233 234 # nightly(1) for interactions between environment variables and this command.
↓ open down ↓ |
199 lines elided |
↑ open up ↑ |
234 235 #POST_NIGHTLY=
235 236
236 237 # Comment this out to disable support for IPP printing, i.e. if you
237 238 # don't want to bother providing the Apache headers this needs.
238 239 #export ENABLE_IPP_PRINTING=
239 240
240 241 # Comment this out to disable support for SMB printing, i.e. if you
241 242 # don't want to bother providing the CUPS headers this needs.
242 243 #export ENABLE_SMB_PRINTING=
243 244
245 +# Comment this out to disable building of 64bit perl modules.
246 +# Don't disable this unless instructed to do so by your distributor.
247 +export ENABLE_64BIT_PERL=
248 +
244 249 # If your distro uses certain versions of Perl, make sure either
245 250 # Makefile.master contains your new defaults OR your .env file sets them.
246 251 # The OmniOS illumos version has these set already.
247 252 #export PERL_VERSION=5.16.1
248 -#export PERL_ARCH=i86pc-solaris-thread-multi-64int
253 +#export PERL_VARIANT=-thread-multi
249 254 #export PERL_PKGVERS=
250 255
251 256 # To build IPS packages for the version you wish to update, ONNV_BUILDNUM must
252 257 # match the version you're on. Find this in /etc/release, and lose the 'r'.
253 258
254 259 # Current bloody is r151021, so use '151021'.
255 260 export ONNV_BUILDNUM=151021
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX