OLD | NEW |
1 // Copyright 2009 The Go Authors. All rights reserved. | 1 // Copyright 2009 The Go Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style | 2 // Use of this source code is governed by a BSD-style |
3 // license that can be found in the LICENSE file. | 3 // license that can be found in the LICENSE file. |
4 | 4 |
5 #include <u.h> | 5 #include <u.h> |
6 #include <libc.h> | 6 #include <libc.h> |
7 #include "go.h" | 7 #include "go.h" |
8 #include "y.tab.h" | 8 #include "y.tab.h" |
9 #include <ar.h> | 9 #include <ar.h> |
10 | 10 |
(...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
222 break; | 222 break; |
223 ········ | 223 ········ |
224 case 'u': | 224 case 'u': |
225 safemode = 1; | 225 safemode = 1; |
226 break; | 226 break; |
227 | 227 |
228 case 'V': | 228 case 'V': |
229 p = expstring(); | 229 p = expstring(); |
230 if(strcmp(p, "X:none") == 0) | 230 if(strcmp(p, "X:none") == 0) |
231 p = ""; | 231 p = ""; |
232 » » print("%cg version %s%s%s%s\n", thechar, getgoversion(), *p ? "
" : "", p); | 232 » » print("%cg version %s%s%s\n", thechar, getgoversion(), *p ? " "
: "", p); |
233 exits(0); | 233 exits(0); |
234 } ARGEND | 234 } ARGEND |
235 | 235 |
236 if(argc < 1) | 236 if(argc < 1) |
237 usage(); | 237 usage(); |
238 | 238 |
239 // special flag to detect compilation of package runtime | 239 // special flag to detect compilation of package runtime |
240 compiling_runtime = debug['+']; | 240 compiling_runtime = debug['+']; |
241 | 241 |
242 pathname = mal(1000); | 242 pathname = mal(1000); |
(...skipping 1826 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2069 p = infile; | 2069 p = infile; |
2070 else | 2070 else |
2071 p = p+1; | 2071 p = p+1; |
2072 snprint(namebuf, sizeof(namebuf), "%s", p); | 2072 snprint(namebuf, sizeof(namebuf), "%s", p); |
2073 p = strrchr(namebuf, '.'); | 2073 p = strrchr(namebuf, '.'); |
2074 if(p != nil) | 2074 if(p != nil) |
2075 *p = 0; | 2075 *p = 0; |
2076 outfile = smprint("%s.%c", namebuf, thechar); | 2076 outfile = smprint("%s.%c", namebuf, thechar); |
2077 } | 2077 } |
2078 } | 2078 } |
OLD | NEW |