2 .\" " The contents of this file are subject to the terms of the
3 .\" " Common Development and Distribution License (the "License").
4 .\" " You may not use this file except in compliance with the License.
6 .\" " You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
7 .\" " or http://www.opensolaris.org/os/licensing.
8 .\" " See the License for the specific language governing permissions
9 .\" " and limitations under the License.
11 .\" " When distributing Covered Code, include this CDDL HEADER in each
12 .\" " file and include the License file at usr/src/OPENSOLARIS.LICENSE.
13 .\" " If applicable, add the following below this CDDL HEADER, with the
14 .\" " fields enclosed by brackets "[]" replaced with your own identifying
15 .\" " information: Portions Copyright [yyyy] [name of copyright owner]
19 .\" "Copyright (c) 1999, 2010, Oracle and/or its affiliates. All rights reserved.
20 .\" "Copyright 2012 Joshua M. Clulow <josh@sysmgr.org>
22 .TH NIGHTLY 1ONBLD "Jan 28, 2014"
25 \- build an OS-Net consolidation overnight
27 \fBnightly [-in] [-V VERS] <env_file>\fP
31 the mother of all build scripts,
32 can bringover, build, archive, package, error check, and
33 generally do everything it takes to
34 turn OS/Net consolidation source code into useful stuff.
35 It is customizable to permit you to run anything from a
36 simple build to all of the cross-checking a gatekeeper
37 needs. The advantage to using
39 is that you build things correctly, consistently and
40 automatically, with the best practices; building with
42 can mean never having to say you're sorry to your
48 performs the following tasks, in order, if
49 all these things are desired:
54 perform a "make clobber" to clean up old binaries
57 bringover from the identified parent gate/clone
60 perform non-DEBUG and DEBUG builds
63 list proto area files and compare with previous list
66 copy updated proto area to parent
69 list shared lib interface and compare with previous list
72 perform a "make lint" of the kernel and report errors
75 perform a "make check" to report hdrchk/cstyle errors
78 report the presence of any core files
81 check the ELF runtime attributes of all dynamic objects
84 check for unreferenced files
87 report on which proto area objects have changed (since the last build)
90 report the total build time
93 save a detailed log file for reference
96 mail the user a summary of the completed build
99 The actions of the script are almost completely determined by
100 the environment variables in the
102 file, the only necessary argument. Ths only thing you really
107 file that does what you want.
109 Like most of the other build tools in usr/src/tools, this script tends
110 to change on a fairly regular basis; do not expect to be able to build
111 OS/Net with a version of nightly significantly older than your source
112 tree. It has what is effectively a Consolidation Private relationship
113 to other build tools and with many parts of the OS/Net makefiles,
114 although it may also be used to build other consolidations.
116 The environment variable NIGHTLY_OPTIONS controls the actions
118 will take as it proceeds.
119 The -i, -n, +t and -V options may also be used from the command
120 line to control the actions without editing your environment file.
121 The -i and -n options complete the build more quickly by bypassing
122 some actions. If NIGHTLY_OPTIONS is not set, then "-Bmt" build
123 options will be used.
125 .B Basic action options
128 Do a build with DEBUG on (non-DEBUG is built by default)
131 Do _not_ do a non-DEBUG build (use with -D to get just a DEBUG build)
134 Do not run pmodes (safe file permission checker)
137 Do an incremental build, suppressing the "make clobber" that by
138 default removes all existing binaries and derived files. From the
139 command line, -i also suppresses the lint pass and the cstyle/hdrchk
143 Suppress the bringover so that the build will start immediately with
147 Create packages for regular install
150 Update proto area in the parent workspace
153 Update the parent workspace with files generated by the build, as follows.
157 Copy proto_list_${MACH} and friends to usr/src in the parent.
160 When used with -f, build a usr/src/unrefmaster.out in
161 the parent by merging all the usr/src/unref-${MACH}.out files in the
165 When used with -A or -r, copy the contents of the resulting
166 ELF-data.${MACH} directory to usr/src/ELF-data.${MACH} in the parent
171 Send mail to $MAILTO at end of build
174 Build and use the tools in $SRC/tools (default setting).
177 Use the build tools in "$ONBLD_TOOLS/bin".
180 .B Code checking options
183 Check for ABI discrepancies in .so files.
184 It is only required for shared object developers when there is an
185 addition, deletion or change of interface in the .so files.
188 Check for cstyle/hdrchk errors
191 Check for unreferenced files. Since the full workspace must be built
192 in order to accurately identify unreferenced files, -f is ignored for
193 incremental (-i) builds, or builds that do not include -l, and -p.
196 Check the ELF runtime attributes of all dynamic objects
199 Do "make lint" in $LINTDIRS (default: $SRC n)
202 Do not run protocmp or checkpaths (note: this option is not
203 recommended, especially in conjunction with the \-p option)
206 Report which proto area objects differ between this and the last build.
207 See wsdiff(1ONBLD) for details. Note that the proto areas used for comparison
208 are the last ones constructed as part of the build. As an example, if both
209 a non-debug and debug build are performed (in that order), then the debug
210 proto area will be used for comparison (which might not be what you want).
215 Gate keeper default group of options (-u)
218 Integration engineer default group of options (-mpu)
221 Default group of options for building a release (-mp)
224 .B Miscellaneous options
227 set the build version string to VERS, overriding VERSION
229 .SH ENVIRONMENT VARIABLES
231 Here is a list of prominent environment variables that
233 references and the meaning of each variable.
236 The root of your workspace, including whatever metadata is kept by
237 the source code management system. This is the workspace in which the
243 The root of the workspace that is the parent of the
244 one being built. This is particularly relevant for configurations
246 workspace and build workspaces underneath it; see the
248 options as well as the PKGARCHIVE environment variable, for more
254 This is the workspace from which
256 will fetch sources to either populate or update your workspace;
257 it defaults to $CLONE_WS.
262 This is the workspace from which
264 will fetch sources by default. This is
265 often distinct from the parent, particularly if the parent is a gate.
270 Root of OS-Net source code, referenced by the Makefiles. It is
271 the starting point of build activity. It should be expressed
272 in terms of $CODEMGR_WS.
277 Root of the proto area for the build. The makefiles direct
278 installation of build products to this area and
279 direct references to these files by builds of commands and other
280 targets. It should be expressed in terms of $CODEMGR_WS.
282 If $MULTI_PROTO is "no", $ROOT may contain a DEBUG or non-DEBUG
283 build. If $MULTI_PROTO is "yes", $ROOT contains the DEBUG build and
284 $ROOT-nd contains the non-DEBUG build.
289 Root of the tools proto area for the build. The makefiles direct
290 installation of tools build products to this area. Unless \fB+t\fR
291 is part of $NIGHTLY_OPTIONS, these tools will be used during the
294 As built by nightly, this will always contain non-DEBUG objects.
295 Therefore, this will always have a -nd suffix, regardless of
301 The instruction set architecture of the build machine as given
302 by \fIuname -p\fP, e.g. sparc, i386.
307 The name of the file used to lock out multiple runs of
309 This should generally be left to the default setting.
314 The location of the log directory maintained by
316 This should generally be left to the default setting.
321 The name of the log file in the $ATLOG directory maintained by
323 This should generally be left to the default setting.
328 The non-root account to use on the build machine for the
329 bringover from the clone or parent workspace.
330 This may not be the same identify used by the SCM.
335 The address to be used to send completion e-mail at the end of
336 the build (for the \-m option).
341 The address to be used for From: in the completion e-mail at the
342 end of the build (for the \-m option).
347 Name of file used with protocmp to compare proto area contents.
352 The parent root, which is the destination for copying the proto
353 area(s) when using the \-U option.
358 The parent tools root, which is the destination for copying the tools
359 proto area when using the \-U option.
364 The release version number to be used; e.g., 5.10.1 (Note: this is set
365 in Makefile.master and should not normally be overridden).
370 The version text string to be used; e.g., "onnv:`date '+%Y-%m-%d'`".
375 The release date text to be used; e.g., October 2009. If not set in
376 your environment file, then this text defaults to the output from
377 $(LC_ALL=C date +"%B %Y"); e.g., "October 2009".
382 Define this to build a release with a non-DEBUG kernel.
385 set this for you based on its options.
390 The destination for packages. This may be relative to
391 $CODEMGR_WS for private packages or relative to $PARENT_WS
392 if you have different workspaces for different architectures
393 but want one hierarchy of packages.
398 Set default flags to make; e.g., -k to build all targets regardless of errors.
401 .B UT_NO_USAGE_TRACKING
403 Disables usage reporting by listed Devpro tools. Otherwise it sends mail
404 to some Devpro machine every time the tools are used.
409 Directories to lint with the \-l option.
414 BUILD_TOOLS is the root of all tools including the compilers; e.g.,
415 /ws/onnv-tools. It is used by the makefile system, but not nightly.
420 ONBLD_TOOLS is the root of all the tools that are part of SUNWonbld; e.g.,
421 /ws/onnv-tools/onbld. By default, it is derived from
423 It is used by the makefile system, but not nightly.
428 The gate-defined default location for the Sun compilers, e.g.
429 /ws/onnv-tools/SUNWspro. By default, it is derived from
431 It is used by the makefile system, but not nightly.
436 The location for the java compilers for the build, generally /usr/java.
441 The gate-defined default location of things formerly in /opt; e.g.,
442 /ws/onnv-tools. This is used by nightly, but not the makefiles.
447 The gate-defined default location for the Teamware tools; e.g.,
448 /ws/onnv-tools/SUNWspro. By default, it is derived from
450 This is used by nightly, but not the makefiles. There is no
451 corresponding variable for Mercurial or Subversion, which are assumed
452 to be installed in the default path.
457 OpenSolaris builds do not contain the closed source tree. Instead,
458 the developer downloads a closed binaries tree and unpacks it.
461 where to find these closed binaries, so that it can add them into the
467 Normally, nightly runs the 'checkpaths' script to check for
468 discrepancies among the files that list paths to other files, such as
469 exception lists and req.flg. Set this flag to 'n' to disable this
470 check, which appears in the nightly output as "Check lists of files."
475 Nightly validates that the version of dmake encountered is known to be
476 safe to use. Set this flag to 'n' to disable this test, allowing any
477 version of dmake to be used.
482 If "no" (the default),
484 will reuse $ROOT for both the DEBUG and non-DEBUG builds. If "yes",
485 the DEBUG build will go in $ROOT and the non-DEBUG build will go in
486 $ROOT-nd. Other values will be treated as "no".
488 .SH NIGHTLY HOOK ENVIRONMENT VARIABLES
490 Several optional environment variables may specify commands to run at
491 various points during the build. Commands specified in the hook
492 variable will be run in a subshell; command output will be appended to
493 the mail message and log file. If the hook exits with a non-zero
494 status, the build is aborted immediately. Environment variables
495 defined in the environment file will be available.
499 Run just after the workspace lock is acquired. This is reserved for
500 per-build-machine customizations and should be set only in /etc/nightly.conf
505 Run just after SYS_PRE_NIGHTLY.
510 Run just before bringover is started; not run if no bringover is done.
515 Run just after bringover completes; not run if no bringover is done.
520 Run after the build completes, with the return status of nightly - one
521 of "Completed", "Interrupted", or "Failed" - available in the
522 environment variable NIGHTLY_STATUS.
527 This is reserved for per-build-machine customizations, and runs
528 immedately after POST_NIGHTLY.
536 If present, nightly executes this file just prior to executing the
541 Start with the example file in usr/src/tools/env/developer.sh
542 (or gatekeeper.sh), copy to myenv and make your changes.
545 # grep NIGHTLY_OPTIONS myenv
547 NIGHTLY_OPTIONS="-ACrlapDm"
549 export NIGHTLY_OPTIONS
551 # /opt/onbld/bin/nightly -i myenv