1 .\" 2 .\" CDDL HEADER START 3 .\" 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. 7 .\" 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. 12 .\" 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] 18 .\" 19 .\" CDDL HEADER END 20 .\" 21 .\" Copyright 2010 Sun Microsystems, Inc. All rights reserved. 22 .\" Use is subject to license terms. 23 .\" 24 .Dd February 10, 2018 25 .Dt CW 1ONBLD 26 .Os 27 .Sh NAME 28 .Nm cw 29 .Nd invoke one or more compilers with argument translation 30 .Sh SYNOPSIS 31 .Nm cw 32 .Op Fl C 33 .Op Fl -versions 34 .Op Fl -noecho 35 .Fl -primary Ar compiler 36 .Op Fl -shadow Ar compiler ... 37 .Fl - 38 .Ar compiler args ... 39 .Sh DESCRIPTION 40 .Nm cw 41 is a facility for invoking one or more compilers, providing translation from 42 Sun style arguments as appropriate. 43 This allows the use of arbitrary compilers without the need to alter large 44 numbers of makefiles. 45 A mode called shadow compilation invokes multiple compilers so that warnings 46 and errors may be obtained from both. 47 See SHADOW COMPILATION for details. 48 This version of cw supports compilers with both Sun Studio 12 and GCC-style 49 command lines. 50 .Sh ARGUMENTS 51 Both the 52 .Fl -primary 53 and 54 .Fl -shadow 55 parameters take a 56 .Em compiler specification . 57 This is a comma-separated list of the form 58 .Ar name,executable,style 59 Where 60 .Ar name 61 is a name for the compiler, 62 .Ar executable 63 is the full path to the compiler executable, and 64 .Ar style 65 is the style of command-line options the compiler expects, either 66 .Em sun 67 or 68 .Em gnu . 69 .Bl -tag -width indent 70 .It Fl -primary Ar compiler 71 Specify the compiler to be used primarily (that which is used for link-editing 72 and pre-processing, and whos objects we deliver). 73 .It Fl -shadow Ar compiler 74 Specify a shadow compiler, which builds sources for the sake of checking code 75 quality and compatibility, but has its output discarded. 76 .It Fl -noecho 77 Do not echo the actual command line of any compilers invoked. 78 .It Fl -versions 79 Request from each configured primary and shadow compiler its version 80 information. 81 .It Fl C 82 The sources being compiled are C++. This is necessary as it affects the 83 translation of compiler arguments. 84 .It Fl - 85 Arguments intended for the compilers themselves must be separated from those 86 of 87 .Nm cw 88 by a 89 .Fl - . 90 .It Fl _name= 91 .It Fl _style= 92 Parameters intended for the compiler be guarded with options of the form 93 .Fl _name= 94 and 95 .Fl _style= 96 Where 97 .Em name 98 and 99 .Em style 100 are those passed to 101 .Fl -primary 102 and 103 .Fl -shadow 104 this allows certain flags to be passed only to certain classes of compiler. 105 .Pp 106 For historical reasons, the 107 .Fl _style= 108 option is also translated such that a style of 109 .Em sun 110 may use the flag 111 .Fl _cc= 112 and a style of 113 .Em gnu 114 may use the flag 115 .Fl _gcc= , 116 and when the 117 .Fl C 118 option is given and C++ is in use the style of 119 .Em sun 120 may use the flag 121 .Fl _CC= 122 and the style of 123 .Em gnu 124 may use the flag 125 .Fl _g++= . 126 .El 127 .Sh SHADOW COMPILATION 128 If 129 .Fl -shadow 130 compilers are specified 131 .Nm cw 132 will invoke shadow compiler, with the outputs modified (as well as any 133 translation for compiler style) as follows: 134 .Bl -enum 135 .It 136 If neither of 137 .Fl c , 138 .Fl S 139 appears in the argument list (that is, linking is attempted or only the 140 pre-processor is invoked), the shadow compilers will not be invoked. 141 .It 142 If the 143 .Fl o Ar filename 144 option was provided, with or without a separating space, it will be replaced with 145 .Fl o Ar tempfile 146 .It 147 If the option 148 .Fl o 149 was not provided, 150 .Fl o Ar tempfile 151 will be added to the end of the argument list used to invoke 152 the shadow compilers. 153 .El 154 When shadow compilation is in effect, 155 .Nm cw 156 writes to standard error each compiler's standard error output following its 157 argument list. 158 Messages from the compilers will not be interleaved. 159 If 160 .Nm cw 161 is used to invoke the preprocessor and no output location is specified, 162 .Nm cw 163 will write to standard output the primary compiler's standard output. 164 .Pp 165 Because the Sun compilers write intermediate objects to fixed 166 filenames in the current directory when instructed to compile and 167 link multiple source files via a single command line, it would be 168 unsafe to invoke more than one compiler in this fashion. 169 Therefore 170 .Nm cw 171 does not accept multiple source files unless the preprocessor is to be 172 invoked. 173 An attempt to invoke 174 .Nm cw 175 in this manner will result in an error. 176 .Sh ARGUMENT TRANSLATION 177 If the compiler to be invoked is a GNU-style C or C++ compiler, a set of 178 default flags is added to the beginning of the argument list, and the 179 remaining arguments are translated to their closest appropriate 180 semantic equivalents and passed in the same order as their 181 counterparts given to 182 .Nm cw . 183 See the comments at the head of 184 .Pa usr/src/tools/cw/cw.c 185 for a detailed list of translations. 186 .Sh ENVIRONMENT 187 .Bl -tag -width indent 188 .It CW_SHADOW_SERIAL 189 If this variable is set in the environment, invoke the primary compiler, wait 190 for it to complete, then invoke the shadow compilers. 191 Normally the primary and shadow compilers are invoked in parallel. 192 .It CW_NO_EXEC 193 If this variable is set in the environment, write the usual output to 194 standard error but do not actually invoke any compiler. 195 This is useful for debugging the translation engine. 196 .El 197 .Sh EXIT STATUS 198 The following exit status values are returned: 199 .Bl -tag -width indent 200 .It 0 201 The primary compiler, and shadow compilers if invoked, both completed 202 successfully. 203 .It >0 204 A usage error occurred, or one or more compilers returned a nonzero 205 exit status. 206 .El 207 .Sh SEE ALSO 208 .Xr cc 1 , 209 .Xr CC 1 , 210 .Xr gcc 1 211 .Sh BUGS 212 The translations provided for gcc are not always exact and in some cases 213 reflect local policy rather than actual equivalence. 214 .Pp 215 Additional compiler types should be supported. 216 .Pp 217 The translation engine is hacky.