cw.c (3cac7b0d73edf3f2674ad0f64d1fff3d2e59ae8c) | cw.c (73a801acfbef73aca0012eca23d6a1b842f5a104) |
---|---|
1 2/* 3 * CDDL HEADER START 4 * 5 * The contents of this file are subject to the terms of the 6 * Common Development and Distribution License (the "License"). 7 * You may not use this file except in compliance with the License. 8 * --- 25 unchanged lines hidden (view full) --- 34 * Wrapper for the GNU C compiler to make it accept the Sun C compiler 35 * arguments where possible. 36 * 37 * Since the translation is inexact, this is something of a work-in-progress. 38 * 39 */ 40 41/* If you modify this file, you must increment CW_VERSION */ | 1 2/* 3 * CDDL HEADER START 4 * 5 * The contents of this file are subject to the terms of the 6 * Common Development and Distribution License (the "License"). 7 * You may not use this file except in compliance with the License. 8 * --- 25 unchanged lines hidden (view full) --- 34 * Wrapper for the GNU C compiler to make it accept the Sun C compiler 35 * arguments where possible. 36 * 37 * Since the translation is inexact, this is something of a work-in-progress. 38 * 39 */ 40 41/* If you modify this file, you must increment CW_VERSION */ |
42#define CW_VERSION "5.1" | 42#define CW_VERSION "6.1" |
43 44/* 45 * -# Verbose mode 46 * -### Show compiler commands built by driver, no compilation 47 * -A<name[(tokens)]> Preprocessor predicate assertion 48 * -C Prevent preprocessor from removing comments 49 * -c Compile only - produce .o files, suppress linking 50 * -cg92 Alias for -xtarget=ss1000 --- 116 unchanged lines hidden (view full) --- 167 * -fprecision=<p> error 168 * -fround=<r> error 169 * -fsimple[=<n>] error 170 * -fsingle[=<n>] error 171 * -ftrap=<t> error 172 * -fstore error 173 * -g pass-thru 174 * -H pass-thru | 43 44/* 45 * -# Verbose mode 46 * -### Show compiler commands built by driver, no compilation 47 * -A<name[(tokens)]> Preprocessor predicate assertion 48 * -C Prevent preprocessor from removing comments 49 * -c Compile only - produce .o files, suppress linking 50 * -cg92 Alias for -xtarget=ss1000 --- 116 unchanged lines hidden (view full) --- 167 * -fprecision=<p> error 168 * -fround=<r> error 169 * -fsimple[=<n>] error 170 * -fsingle[=<n>] error 171 * -ftrap=<t> error 172 * -fstore error 173 * -g pass-thru 174 * -H pass-thru |
175 * -h <name> pass-thru | |
176 * -I<dir> pass-thru 177 * -i pass-thru 178 * -keeptmp -save-temps 179 * -L<dir> pass-thru 180 * -l<name> pass-thru 181 * -mc error 182 * -mr error 183 * -mr,"string" error --- 594 unchanged lines hidden (view full) --- 778 if (arglen == 1) { 779 newae(ctx->i_ae, arg); 780 break; 781 } 782 error(arg); 783 break; 784 case 'A': 785 case 'g': | 175 * -I<dir> pass-thru 176 * -i pass-thru 177 * -keeptmp -save-temps 178 * -L<dir> pass-thru 179 * -l<name> pass-thru 180 * -mc error 181 * -mr error 182 * -mr,"string" error --- 594 unchanged lines hidden (view full) --- 777 if (arglen == 1) { 778 newae(ctx->i_ae, arg); 779 break; 780 } 781 error(arg); 782 break; 783 case 'A': 784 case 'g': |
786 case 'h': | |
787 case 'I': 788 case 'i': 789 case 'L': 790 case 'l': 791 case 'R': 792 case 'U': 793 case 'u': 794 case 'w': --- 1030 unchanged lines hidden --- | 785 case 'I': 786 case 'i': 787 case 'L': 788 case 'l': 789 case 'R': 790 case 'U': 791 case 'u': 792 case 'w': --- 1030 unchanged lines hidden --- |