build.c 36 KB
Newer Older
Russ Cox's avatar
Russ Cox committed
1 2 3 4 5
// Copyright 2012 The Go Authors.  All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

#include "a.h"
6
#include "arg.h"
Russ Cox's avatar
Russ Cox committed
7 8 9 10 11 12 13 14 15

/*
 * Initialization for any invocation.
 */

// The usual variables.
char *goarch;
char *gobin;
char *gohostarch;
Russ Cox's avatar
Russ Cox committed
16
char *gohostchar;
Russ Cox's avatar
Russ Cox committed
17 18
char *gohostos;
char *goos;
19
char *goarm;
20
char *go386;
Gustavo Niemeyer's avatar
Gustavo Niemeyer committed
21 22
char *goroot = GOROOT_FINAL;
char *goroot_final = GOROOT_FINAL;
Russ Cox's avatar
Russ Cox committed
23
char *workdir;
24
char *tooldir;
Russ Cox's avatar
Russ Cox committed
25
char *gochar;
26
char *goversion;
Russ Cox's avatar
Russ Cox committed
27 28
char *slash;	// / for unix, \ for windows

Russ Cox's avatar
Russ Cox committed
29 30
bool	rebuildall = 0;

Russ Cox's avatar
Russ Cox committed
31
static bool shouldbuild(char*, char*);
Bobby Powers's avatar
Bobby Powers committed
32
static void copy(char*, char*, int);
33
static char *findgoversion(void);
Russ Cox's avatar
Russ Cox committed
34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59

// The known architecture letters.
static char *gochars = "568";

// The known architectures.
static char *okgoarch[] = {
	// same order as gochars
	"arm",
	"amd64",
	"386",
};

// The known operating systems.
static char *okgoos[] = {
	"darwin",
	"linux",
	"freebsd",
	"netbsd",
	"openbsd",
	"plan9",
	"windows",
};

static void rmworkdir(void);

// find reports the first index of p in l[0:n], or else -1.
60
int
Russ Cox's avatar
Russ Cox committed
61 62 63
find(char *p, char **l, int n)
{
	int i;
64

Russ Cox's avatar
Russ Cox committed
65 66 67 68 69 70 71 72 73 74 75 76 77
	for(i=0; i<n; i++)
		if(streq(p, l[i]))
			return i;
	return -1;
}

// init handles initialization of the various global state, like goroot and goarch.
void
init(void)
{
	char *p;
	int i;
	Buf b;
78

Russ Cox's avatar
Russ Cox committed
79 80 81
	binit(&b);

	xgetenv(&b, "GOROOT");
82 83 84 85
	if(b.len > 0) {
		// if not "/", then strip trailing path separator
		if(b.len >= 2 && b.p[b.len - 1] == slash[0])
			b.len--;
Gustavo Niemeyer's avatar
Gustavo Niemeyer committed
86
		goroot = btake(&b);
87
	}
Russ Cox's avatar
Russ Cox committed
88 89 90 91 92 93 94 95 96 97 98 99 100

	xgetenv(&b, "GOBIN");
	if(b.len == 0)
		bprintf(&b, "%s%sbin", goroot, slash);
	gobin = btake(&b);

	xgetenv(&b, "GOOS");
	if(b.len == 0)
		bwritestr(&b, gohostos);
	goos = btake(&b);
	if(find(goos, okgoos, nelem(okgoos)) < 0)
		fatal("unknown $GOOS %s", goos);

101 102 103 104 105
	xgetenv(&b, "GOARM");
	if(b.len == 0)
		bwritestr(&b, xgetgoarm());
	goarm = btake(&b);

106
	xgetenv(&b, "GO386");
Russ Cox's avatar
Russ Cox committed
107
	if(b.len == 0) {
108 109
		if(cansse2())
			bwritestr(&b, "sse2");
Russ Cox's avatar
Russ Cox committed
110 111 112
		else
			bwritestr(&b, "387");
	}
113 114
	go386 = btake(&b);

115
	p = bpathf(&b, "%s/include/u.h", goroot);
Russ Cox's avatar
Russ Cox committed
116 117 118 119 120
	if(!isfile(p)) {
		fatal("$GOROOT is not set correctly or not exported\n"
			"\tGOROOT=%s\n"
			"\t%s does not exist", goroot, p);
	}
121

Russ Cox's avatar
Russ Cox committed
122 123 124 125
	xgetenv(&b, "GOHOSTARCH");
	if(b.len > 0)
		gohostarch = btake(&b);

Russ Cox's avatar
Russ Cox committed
126 127
	i = find(gohostarch, okgoarch, nelem(okgoarch));
	if(i < 0)
Russ Cox's avatar
Russ Cox committed
128
		fatal("unknown $GOHOSTARCH %s", gohostarch);
Russ Cox's avatar
Russ Cox committed
129 130
	bprintf(&b, "%c", gochars[i]);
	gohostchar = btake(&b);
Russ Cox's avatar
Russ Cox committed
131 132 133 134 135

	xgetenv(&b, "GOARCH");
	if(b.len == 0)
		bwritestr(&b, gohostarch);
	goarch = btake(&b);
Russ Cox's avatar
Russ Cox committed
136 137
	i = find(goarch, okgoarch, nelem(okgoarch));
	if(i < 0)
Russ Cox's avatar
Russ Cox committed
138 139 140 141 142 143 144
		fatal("unknown $GOARCH %s", goarch);
	bprintf(&b, "%c", gochars[i]);
	gochar = btake(&b);

	xsetenv("GOROOT", goroot);
	xsetenv("GOARCH", goarch);
	xsetenv("GOOS", goos);
145
	xsetenv("GOARM", goarm);
146
	xsetenv("GO386", go386);
147

Russ Cox's avatar
Russ Cox committed
148 149 150 151
	// Make the environment more predictable.
	xsetenv("LANG", "C");
	xsetenv("LANGUAGE", "en_US.UTF8");

152 153
	goversion = findgoversion();

Russ Cox's avatar
Russ Cox committed
154 155 156
	workdir = xworkdir();
	xatexit(rmworkdir);

Russ Cox's avatar
Russ Cox committed
157 158 159
	bpathf(&b, "%s/pkg/tool/%s_%s", goroot, gohostos, gohostarch);
	tooldir = btake(&b);

Russ Cox's avatar
Russ Cox committed
160 161 162 163 164 165 166
	bfree(&b);
}

// rmworkdir deletes the work directory.
static void
rmworkdir(void)
{
167
	if(vflag > 1)
168
		errprintf("rm -rf %s\n", workdir);
Russ Cox's avatar
Russ Cox committed
169 170 171
	xremoveall(workdir);
}

172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190
// Remove trailing spaces.
static void
chomp(Buf *b)
{
	int c;

	while(b->len > 0 && ((c=b->p[b->len-1]) == ' ' || c == '\t' || c == '\r' || c == '\n'))
		b->len--;
}


// findgoversion determines the Go version to use in the version string.
static char*
findgoversion(void)
{
	char *tag, *rev, *p;
	int i, nrev;
	Buf b, path, bmore, branch;
	Vec tags;
191

192 193 194 195 196
	binit(&b);
	binit(&path);
	binit(&bmore);
	binit(&branch);
	vinit(&tags);
197

198 199 200 201 202 203
	// The $GOROOT/VERSION file takes priority, for distributions
	// without the Mercurial repo.
	bpathf(&path, "%s/VERSION", goroot);
	if(isfile(bstr(&path))) {
		readfile(&b, bstr(&path));
		chomp(&b);
204 205 206 207 208 209
		// Commands such as "dist version > VERSION" will cause
		// the shell to create an empty VERSION file and set dist's
		// stdout to its fd. dist in turn looks at VERSION and uses
		// its content if available, which is empty at this point.
		if(b.len > 0)
			goto done;
210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227
	}

	// The $GOROOT/VERSION.cache file is a cache to avoid invoking
	// hg every time we run this command.  Unlike VERSION, it gets
	// deleted by the clean command.
	bpathf(&path, "%s/VERSION.cache", goroot);
	if(isfile(bstr(&path))) {
		readfile(&b, bstr(&path));
		chomp(&b);
		goto done;
	}

	// Otherwise, use Mercurial.
	// What is the current branch?
	run(&branch, goroot, CheckExit, "hg", "identify", "-b", nil);
	chomp(&branch);

	// What are the tags along the current branch?
228
	tag = "devel";
229
	rev = ".";
230
	run(&b, goroot, CheckExit, "hg", "log", "-b", bstr(&branch), "-r", ".:0", "--template", "{tags} + ", nil);
231 232 233 234 235 236
	splitfields(&tags, bstr(&b));
	nrev = 0;
	for(i=0; i<tags.len; i++) {
		p = tags.p[i];
		if(streq(p, "+"))
			nrev++;
237 238 239
		// NOTE: Can reenable the /* */ code when we want to
		// start reporting versions named 'weekly' again.
		if(/*hasprefix(p, "weekly.") ||*/ hasprefix(p, "go")) {
240 241 242 243 244 245 246 247 248 249 250 251 252 253 254
			tag = xstrdup(p);
			// If this tag matches the current checkout
			// exactly (no "+" yet), don't show extra
			// revision information.
			if(nrev == 0)
				rev = "";
			break;
		}
	}

	if(tag[0] == '\0') {
		// Did not find a tag; use branch name.
		bprintf(&b, "branch.%s", bstr(&branch));
		tag = btake(&b);
	}
255

256 257 258
	if(rev[0]) {
		// Tag is before the revision we're building.
		// Add extra information.
259
		run(&bmore, goroot, CheckExit, "hg", "log", "--template", " +{node|short} {date|date}", "-r", rev, nil);
260 261
		chomp(&bmore);
	}
262

263 264 265 266 267
	bprintf(&b, "%s", tag);
	if(bmore.len > 0)
		bwriteb(&b, &bmore);

	// Cache version.
Bobby Powers's avatar
Bobby Powers committed
268
	writefile(&b, bstr(&path), 0);
269 270 271

done:
	p = btake(&b);
272 273


274 275 276 277 278
	bfree(&b);
	bfree(&path);
	bfree(&bmore);
	bfree(&branch);
	vfree(&tags);
279

280 281 282
	return p;
}

Russ Cox's avatar
Russ Cox committed
283 284 285 286 287 288 289 290 291 292 293
/*
 * Initial tree setup.
 */

// The old tools that no longer live in $GOBIN or $GOROOT/bin.
static char *oldtool[] = {
	"5a", "5c", "5g", "5l",
	"6a", "6c", "6g", "6l",
	"8a", "8c", "8g", "8l",
	"6cov",
	"6nm",
Russ Cox's avatar
Russ Cox committed
294
	"6prof",
Russ Cox's avatar
Russ Cox committed
295 296 297 298 299 300 301 302 303 304 305 306 307 308 309
	"cgo",
	"ebnflint",
	"goapi",
	"gofix",
	"goinstall",
	"gomake",
	"gopack",
	"gopprof",
	"gotest",
	"gotype",
	"govet",
	"goyacc",
	"quietgcc",
};

310 311 312 313 314 315 316 317 318
// Unreleased directories (relative to $GOROOT) that should
// not be in release branches.
static char *unreleased[] = {
	"src/cmd/cov",
	"src/cmd/prof",
	"src/pkg/old",
	"src/pkg/exp",
};

Russ Cox's avatar
Russ Cox committed
319 320 321 322 323 324 325 326 327 328
// setup sets up the tree for the initial build.
static void
setup(void)
{
	int i;
	Buf b;
	char *p;

	binit(&b);

Russ Cox's avatar
Russ Cox committed
329
	// Create bin directory.
330
	p = bpathf(&b, "%s/bin", goroot);
Russ Cox's avatar
Russ Cox committed
331 332 333 334
	if(!isdir(p))
		xmkdir(p);

	// Create package directory.
335
	p = bpathf(&b, "%s/pkg", goroot);
Russ Cox's avatar
Russ Cox committed
336 337
	if(!isdir(p))
		xmkdir(p);
Russ Cox's avatar
Russ Cox committed
338 339 340
	p = bpathf(&b, "%s/pkg/%s_%s", goroot, gohostos, gohostarch);
	if(rebuildall)
		xremoveall(p);
341
	xmkdirall(p);
Russ Cox's avatar
Russ Cox committed
342 343 344 345
	if(!streq(goos, gohostos) || !streq(goarch, gohostarch)) {
		p = bpathf(&b, "%s/pkg/%s_%s", goroot, goos, goarch);
		if(rebuildall)
			xremoveall(p);
346
		xmkdirall(p);
Russ Cox's avatar
Russ Cox committed
347
	}
348

349 350
	// Create object directory.
	// We keep it in pkg/ so that all the generated binaries
Russ Cox's avatar
Russ Cox committed
351 352 353 354 355 356 357 358 359 360 361 362 363
	// are in one tree.  If pkg/obj/libgc.a exists, it is a dreg from
	// before we used subdirectories of obj.  Delete all of obj
	// to clean up.
	bpathf(&b, "%s/pkg/obj/libgc.a", goroot);
	if(isfile(bstr(&b)))
		xremoveall(bpathf(&b, "%s/pkg/obj", goroot));
	p = bpathf(&b, "%s/pkg/obj/%s_%s", goroot, gohostos, gohostarch);
	if(rebuildall)
		xremoveall(p);
	xmkdirall(p);

	// Create tool directory.
	// We keep it in pkg/, just like the object directory above.
364 365
	if(rebuildall)
		xremoveall(tooldir);
Russ Cox's avatar
Russ Cox committed
366 367 368 369
	xmkdirall(tooldir);

	// Remove tool binaries from before the tool/gohostos_gohostarch
	xremoveall(bpathf(&b, "%s/bin/tool", goroot));
Russ Cox's avatar
Russ Cox committed
370 371 372

	// Remove old pre-tool binaries.
	for(i=0; i<nelem(oldtool); i++)
Russ Cox's avatar
Russ Cox committed
373 374
		xremove(bpathf(&b, "%s/bin/%s", goroot, oldtool[i]));

Russ Cox's avatar
Russ Cox committed
375 376 377 378 379 380 381 382 383
	// If $GOBIN is set and has a Go compiler, it must be cleaned.
	for(i=0; gochars[i]; i++) {
		if(isfile(bprintf(&b, "%s%s%c%s", gobin, slash, gochars[i], "g"))) {
			for(i=0; i<nelem(oldtool); i++)
				xremove(bprintf(&b, "%s%s%s", gobin, slash, oldtool[i]));
			break;
		}
	}

384
	// For release, make sure excluded things are excluded.
385
	if(hasprefix(goversion, "release.") || hasprefix(goversion, "go")) {
386 387 388 389 390
		for(i=0; i<nelem(unreleased); i++)
			if(isdir(bpathf(&b, "%s/%s", goroot, unreleased[i])))
				fatal("%s should not exist in release build", bstr(&b));
	}

Russ Cox's avatar
Russ Cox committed
391 392 393 394 395 396 397 398
	bfree(&b);
}

/*
 * C library and tool building
 */

// gccargs is the gcc command line to use for compiling a single C file.
399
static char *proto_gccargs[] = {
Russ Cox's avatar
Russ Cox committed
400
	"-Wall",
401 402 403
	// native Plan 9 compilers don't like non-standard prototypes
	// so let gcc catch them.
	"-Wstrict-prototypes",
Russ Cox's avatar
Russ Cox committed
404 405 406 407 408 409 410 411
	"-Wno-sign-compare",
	"-Wno-missing-braces",
	"-Wno-parentheses",
	"-Wno-unknown-pragmas",
	"-Wno-switch",
	"-Wno-comment",
	"-Werror",
	"-fno-common",
412
	"-pipe",
Russ Cox's avatar
Russ Cox committed
413 414 415
	"-O2",
};

416 417
static Vec gccargs;

Russ Cox's avatar
Russ Cox committed
418
// deptab lists changes to the default dependencies for a given prefix.
419
// deps ending in /* read the whole directory; deps beginning with -
Russ Cox's avatar
Russ Cox committed
420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466
// exclude files with that prefix.
static struct {
	char *prefix;  // prefix of target
	char *dep[20];  // dependency tweaks for targets with that prefix
} deptab[] = {
	{"lib9", {
		"$GOROOT/include/u.h",
		"$GOROOT/include/utf.h",
		"$GOROOT/include/fmt.h",
		"$GOROOT/include/libc.h",
		"fmt/*",
		"utf/*",
	}},
	{"libbio", {
		"$GOROOT/include/u.h",
		"$GOROOT/include/utf.h",
		"$GOROOT/include/fmt.h",
		"$GOROOT/include/libc.h",
		"$GOROOT/include/bio.h",
	}},
	{"libmach", {
		"$GOROOT/include/u.h",
		"$GOROOT/include/utf.h",
		"$GOROOT/include/fmt.h",
		"$GOROOT/include/libc.h",
		"$GOROOT/include/bio.h",
		"$GOROOT/include/ar.h",
		"$GOROOT/include/bootexec.h",
		"$GOROOT/include/mach.h",
		"$GOROOT/include/ureg_amd64.h",
		"$GOROOT/include/ureg_arm.h",
		"$GOROOT/include/ureg_x86.h",
	}},
	{"cmd/cc", {
		"-pgen.c",
		"-pswt.c",
	}},
	{"cmd/gc", {
		"-cplx.c",
		"-pgen.c",
		"-y1.tab.c",  // makefile dreg
		"opnames.h",
	}},
	{"cmd/5c", {
		"../cc/pgen.c",
		"../cc/pswt.c",
		"../5l/enam.c",
Russ Cox's avatar
Russ Cox committed
467
		"$GOROOT/pkg/obj/$GOOS_$GOARCH/libcc.a",
Russ Cox's avatar
Russ Cox committed
468 469 470 471 472
	}},
	{"cmd/6c", {
		"../cc/pgen.c",
		"../cc/pswt.c",
		"../6l/enam.c",
Russ Cox's avatar
Russ Cox committed
473
		"$GOROOT/pkg/obj/$GOOS_$GOARCH/libcc.a",
Russ Cox's avatar
Russ Cox committed
474 475 476 477 478
	}},
	{"cmd/8c", {
		"../cc/pgen.c",
		"../cc/pswt.c",
		"../8l/enam.c",
Russ Cox's avatar
Russ Cox committed
479
		"$GOROOT/pkg/obj/$GOOS_$GOARCH/libcc.a",
Russ Cox's avatar
Russ Cox committed
480 481 482 483 484
	}},
	{"cmd/5g", {
		"../gc/cplx.c",
		"../gc/pgen.c",
		"../5l/enam.c",
Russ Cox's avatar
Russ Cox committed
485
		"$GOROOT/pkg/obj/$GOOS_$GOARCH/libgc.a",
Russ Cox's avatar
Russ Cox committed
486 487 488 489 490
	}},
	{"cmd/6g", {
		"../gc/cplx.c",
		"../gc/pgen.c",
		"../6l/enam.c",
Russ Cox's avatar
Russ Cox committed
491
		"$GOROOT/pkg/obj/$GOOS_$GOARCH/libgc.a",
Russ Cox's avatar
Russ Cox committed
492 493 494 495 496
	}},
	{"cmd/8g", {
		"../gc/cplx.c",
		"../gc/pgen.c",
		"../8l/enam.c",
Russ Cox's avatar
Russ Cox committed
497
		"$GOROOT/pkg/obj/$GOOS_$GOARCH/libgc.a",
Russ Cox's avatar
Russ Cox committed
498 499
	}},
	{"cmd/5l", {
500
		"../ld/*",
Russ Cox's avatar
Russ Cox committed
501 502 503 504 505 506 507 508 509 510 511
		"enam.c",
	}},
	{"cmd/6l", {
		"../ld/*",
		"enam.c",
	}},
	{"cmd/8l", {
		"../ld/*",
		"enam.c",
	}},
	{"cmd/", {
Russ Cox's avatar
Russ Cox committed
512 513 514
		"$GOROOT/pkg/obj/$GOOS_$GOARCH/libmach.a",
		"$GOROOT/pkg/obj/$GOOS_$GOARCH/libbio.a",
		"$GOROOT/pkg/obj/$GOOS_$GOARCH/lib9.a",
515 516 517 518 519 520 521
	}},
	{"pkg/runtime", {
		"zasm_$GOOS_$GOARCH.h",
		"zgoarch_$GOARCH.go",
		"zgoos_$GOOS.go",
		"zruntime_defs_$GOOS_$GOARCH.go",
		"zversion.go",
Russ Cox's avatar
Russ Cox committed
522 523 524 525 526 527 528 529 530
	}},
};

// depsuffix records the allowed suffixes for source files.
char *depsuffix[] = {
	".c",
	".h",
	".s",
	".go",
531
	".goc",
Russ Cox's avatar
Russ Cox committed
532 533 534 535
};

// gentab records how to generate some trivial files.
static struct {
536
	char *nameprefix;
Russ Cox's avatar
Russ Cox committed
537 538 539 540
	void (*gen)(char*, char*);
} gentab[] = {
	{"opnames.h", gcopnames},
	{"enam.c", mkenam},
541 542 543 544 545
	{"zasm_", mkzasm},
	{"zgoarch_", mkzgoarch},
	{"zgoos_", mkzgoos},
	{"zruntime_defs_", mkzruntimedefs},
	{"zversion.go", mkzversion},
Russ Cox's avatar
Russ Cox committed
546 547 548 549 550 551 552
};

// install installs the library, package, or binary associated with dir,
// which is relative to $GOROOT/src.
static void
install(char *dir)
{
553
	char *name, *p, *elem, *prefix, *exe;
Russ Cox's avatar
Russ Cox committed
554
	bool islib, ispkg, isgo, stale, clang;
Russ Cox's avatar
Russ Cox committed
555 556 557
	Buf b, b1, path;
	Vec compile, files, link, go, missing, clean, lib, extra;
	Time ttarg, t;
558
	int i, j, k, n, doclean, targ, usecpp;
Russ Cox's avatar
Russ Cox committed
559

Russ Cox's avatar
Russ Cox committed
560 561
	if(vflag) {
		if(!streq(goos, gohostos) || !streq(goarch, gohostarch))
562
			errprintf("%s (%s/%s)\n", dir, goos, goarch);
Russ Cox's avatar
Russ Cox committed
563
		else
564
			errprintf("%s\n", dir);
Russ Cox's avatar
Russ Cox committed
565
	}
566

Russ Cox's avatar
Russ Cox committed
567 568 569 570 571 572 573 574 575 576 577
	binit(&b);
	binit(&b1);
	binit(&path);
	vinit(&compile);
	vinit(&files);
	vinit(&link);
	vinit(&go);
	vinit(&missing);
	vinit(&clean);
	vinit(&lib);
	vinit(&extra);
578

579

580 581 582 583 584 585 586
	// path = full path to dir.
	bpathf(&path, "%s/src/%s", goroot, dir);
	name = lastelem(dir);

	// For misc/prof, copy into the tool directory and we're done.
	if(hasprefix(dir, "misc/")) {
		copy(bpathf(&b, "%s/%s", tooldir, name),
Bobby Powers's avatar
Bobby Powers committed
587
			bpathf(&b1, "%s/misc/%s", goroot, name), 1);
588 589 590 591 592 593
		goto out;
	}

	// For release, cmd/prof and cmd/cov are not included.
	if((streq(dir, "cmd/cov") || streq(dir, "cmd/prof")) && !isdir(bstr(&path))) {
		if(vflag > 1)
594
			errprintf("skipping %s - does not exist\n", dir);
595 596 597
		goto out;
	}

598 599 600 601 602
	// set up gcc command line on first run.
	if(gccargs.len == 0) {
		xgetenv(&b, "CC");
		if(b.len == 0)
			bprintf(&b, "gcc");
Russ Cox's avatar
Russ Cox committed
603
		clang = contains(bstr(&b), "clang");
604 605 606
		splitfields(&gccargs, bstr(&b));
		for(i=0; i<nelem(proto_gccargs); i++)
			vadd(&gccargs, proto_gccargs[i]);
Russ Cox's avatar
Russ Cox committed
607 608 609 610
		if(clang)
			vadd(&gccargs, "-g");
		else
			vadd(&gccargs, "-ggdb");
611
	}
612

Russ Cox's avatar
Russ Cox committed
613 614
	islib = hasprefix(dir, "lib") || streq(dir, "cmd/cc") || streq(dir, "cmd/gc");
	ispkg = hasprefix(dir, "pkg");
Russ Cox's avatar
Russ Cox committed
615
	isgo = ispkg || streq(dir, "cmd/go") || streq(dir, "cmd/cgo");
Russ Cox's avatar
Russ Cox committed
616

617 618 619
	exe = "";
	if(streq(gohostos, "windows"))
		exe = ".exe";
620

Russ Cox's avatar
Russ Cox committed
621
	// Start final link command line.
Scott Lawrence's avatar
Scott Lawrence committed
622
	// Note: code below knows that link.p[targ] is the target.
Russ Cox's avatar
Russ Cox committed
623 624 625
	if(islib) {
		// C library.
		vadd(&link, "ar");
626 627 628 629
		if(streq(gohostos, "plan9"))
			vadd(&link, "rc");
		else
			vadd(&link, "rsc");
Russ Cox's avatar
Russ Cox committed
630 631 632
		prefix = "";
		if(!hasprefix(name, "lib"))
			prefix = "lib";
Scott Lawrence's avatar
Scott Lawrence committed
633
		targ = link.len;
Russ Cox's avatar
Russ Cox committed
634
		vadd(&link, bpathf(&b, "%s/pkg/obj/%s_%s/%s%s.a", goroot, gohostos, gohostarch, prefix, name));
Russ Cox's avatar
Russ Cox committed
635 636
	} else if(ispkg) {
		// Go library (package).
Russ Cox's avatar
Russ Cox committed
637
		vadd(&link, bpathf(&b, "%s/pack", tooldir));
Russ Cox's avatar
Russ Cox committed
638
		vadd(&link, "grc");
639
		p = bprintf(&b, "%s/pkg/%s_%s/%s", goroot, goos, goarch, dir+4);
Russ Cox's avatar
Russ Cox committed
640 641
		*xstrrchr(p, '/') = '\0';
		xmkdirall(p);
Scott Lawrence's avatar
Scott Lawrence committed
642
		targ = link.len;
643
		vadd(&link, bpathf(&b, "%s/pkg/%s_%s/%s.a", goroot, goos, goarch, dir+4));
Russ Cox's avatar
Russ Cox committed
644
	} else if(streq(dir, "cmd/go") || streq(dir, "cmd/cgo")) {
Russ Cox's avatar
Russ Cox committed
645
		// Go command.
Russ Cox's avatar
Russ Cox committed
646
		vadd(&link, bpathf(&b, "%s/%sl", tooldir, gochar));
Russ Cox's avatar
Russ Cox committed
647
		vadd(&link, "-o");
Russ Cox's avatar
Russ Cox committed
648 649 650
		elem = name;
		if(streq(elem, "go"))
			elem = "go_bootstrap";
Scott Lawrence's avatar
Scott Lawrence committed
651
		targ = link.len;
Russ Cox's avatar
Russ Cox committed
652
		vadd(&link, bpathf(&b, "%s/%s%s", tooldir, elem, exe));
Russ Cox's avatar
Russ Cox committed
653
	} else {
Scott Lawrence's avatar
Scott Lawrence committed
654
		// C command. Use gccargs.
655 656 657 658 659 660 661 662 663 664 665 666 667 668 669
		if(streq(gohostos, "plan9")) {
			vadd(&link, bprintf(&b, "%sl", gohostchar));
			vadd(&link, "-o");
			targ = link.len;
			vadd(&link, bpathf(&b, "%s/%s", tooldir, name));
		} else {
			vcopy(&link, gccargs.p, gccargs.len);
			vadd(&link, "-o");
			targ = link.len;
			vadd(&link, bpathf(&b, "%s/%s%s", tooldir, name, exe));
			if(streq(gohostarch, "amd64"))
				vadd(&link, "-m64");
			else if(streq(gohostarch, "386"))
				vadd(&link, "-m32");
		}
Russ Cox's avatar
Russ Cox committed
670
	}
Scott Lawrence's avatar
Scott Lawrence committed
671
	ttarg = mtime(link.p[targ]);
Russ Cox's avatar
Russ Cox committed
672 673 674 675 676

	// Gather files that are sources for this target.
	// Everything in that directory, and any target-specific
	// additions.
	xreaddir(&files, bstr(&path));
677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692

	// Remove files beginning with . or _,
	// which are likely to be editor temporary files.
	// This is the same heuristic build.ScanDir uses.
	// There do exist real C files beginning with _,
	// so limit that check to just Go files.
	n = 0;
	for(i=0; i<files.len; i++) {
		p = files.p[i];
		if(hasprefix(p, ".") || (hasprefix(p, "_") && hassuffix(p, ".go")))
			xfree(p);
		else
			files.p[n++] = p;
	}
	files.len = n;

Russ Cox's avatar
Russ Cox committed
693 694 695
	for(i=0; i<nelem(deptab); i++) {
		if(hasprefix(dir, deptab[i].prefix)) {
			for(j=0; (p=deptab[i].dep[j])!=nil; j++) {
696 697 698 699 700 701
				breset(&b1);
				bwritestr(&b1, p);
				bsubst(&b1, "$GOROOT", goroot);
				bsubst(&b1, "$GOOS", goos);
				bsubst(&b1, "$GOARCH", goarch);
				p = bstr(&b1);
Russ Cox's avatar
Russ Cox committed
702
				if(hassuffix(p, ".a")) {
703 704
					if(streq(gohostos, "plan9") && hassuffix(p, "libbio.a"))
						continue;
705
					vadd(&lib, bpathf(&b, "%s", p));
Russ Cox's avatar
Russ Cox committed
706 707 708
					continue;
				}
				if(hassuffix(p, "/*")) {
709
					bpathf(&b, "%s/%s", bstr(&path), p);
Russ Cox's avatar
Russ Cox committed
710 711 712 713
					b.len -= 2;
					xreaddir(&extra, bstr(&b));
					bprintf(&b, "%s", p);
					b.len -= 2;
714 715
					for(k=0; k<extra.len; k++)
						vadd(&files, bpathf(&b1, "%s/%s", bstr(&b), extra.p[k]));
Russ Cox's avatar
Russ Cox committed
716 717 718 719 720 721 722 723 724 725 726 727 728
					continue;
				}
				if(hasprefix(p, "-")) {
					p++;
					n = 0;
					for(k=0; k<files.len; k++) {
						if(hasprefix(files.p[k], p))
							xfree(files.p[k]);
						else
							files.p[n++] = files.p[k];
					}
					files.len = n;
					continue;
729
				}
Russ Cox's avatar
Russ Cox committed
730 731 732 733 734
				vadd(&files, p);
			}
		}
	}
	vuniq(&files);
735

Russ Cox's avatar
Russ Cox committed
736 737 738
	// Convert to absolute paths.
	for(i=0; i<files.len; i++) {
		if(!isabs(files.p[i])) {
739
			bpathf(&b, "%s/%s", bstr(&path), files.p[i]);
Russ Cox's avatar
Russ Cox committed
740 741 742 743 744 745
			xfree(files.p[i]);
			files.p[i] = btake(&b);
		}
	}

	// Is the target up-to-date?
Russ Cox's avatar
Russ Cox committed
746
	stale = rebuildall;
Russ Cox's avatar
Russ Cox committed
747 748 749 750 751 752 753 754 755 756
	n = 0;
	for(i=0; i<files.len; i++) {
		p = files.p[i];
		for(j=0; j<nelem(depsuffix); j++)
			if(hassuffix(p, depsuffix[j]))
				goto ok;
		xfree(files.p[i]);
		continue;
	ok:
		t = mtime(p);
757 758 759 760 761 762
		if(t != 0 && !hassuffix(p, ".a") && !shouldbuild(p, dir)) {
			xfree(files.p[i]);
			continue;
		}
		if(hassuffix(p, ".go"))
			vadd(&go, p);
Russ Cox's avatar
Russ Cox committed
763 764 765 766 767 768 769 770 771 772
		if(t > ttarg)
			stale = 1;
		if(t == 0) {
			vadd(&missing, p);
			files.p[n++] = files.p[i];
			continue;
		}
		files.p[n++] = files.p[i];
	}
	files.len = n;
773

774 775 776 777
	// If there are no files to compile, we're done.
	if(files.len == 0)
		goto out;
	
Russ Cox's avatar
Russ Cox committed
778 779 780
	for(i=0; i<lib.len && !stale; i++)
		if(mtime(lib.p[i]) > ttarg)
			stale = 1;
781

Russ Cox's avatar
Russ Cox committed
782 783 784
	if(!stale)
		goto out;

785 786 787
	// For package runtime, copy some files into the work space.
	if(streq(dir, "pkg/runtime")) {
		copy(bpathf(&b, "%s/arch_GOARCH.h", workdir),
Bobby Powers's avatar
Bobby Powers committed
788
			bpathf(&b1, "%s/arch_%s.h", bstr(&path), goarch), 0);
789
		copy(bpathf(&b, "%s/defs_GOOS_GOARCH.h", workdir),
Bobby Powers's avatar
Bobby Powers committed
790
			bpathf(&b1, "%s/defs_%s_%s.h", bstr(&path), goos, goarch), 0);
791
		copy(bpathf(&b, "%s/os_GOOS.h", workdir),
Bobby Powers's avatar
Bobby Powers committed
792
			bpathf(&b1, "%s/os_%s.h", bstr(&path), goos), 0);
793
		copy(bpathf(&b, "%s/signals_GOOS.h", workdir),
Bobby Powers's avatar
Bobby Powers committed
794
			bpathf(&b1, "%s/signals_%s.h", bstr(&path), goos), 0);
795 796 797 798 799
	}

	// Generate any missing files; regenerate existing ones.
	for(i=0; i<files.len; i++) {
		p = files.p[i];
Russ Cox's avatar
Russ Cox committed
800 801
		elem = lastelem(p);
		for(j=0; j<nelem(gentab); j++) {
802 803
			if(hasprefix(elem, gentab[j].nameprefix)) {
				if(vflag > 1)
804
					errprintf("generate %s\n", p);
Russ Cox's avatar
Russ Cox committed
805
				gentab[j].gen(bstr(&path), p);
806 807 808 809 810 811 812
				// Do not add generated file to clean list.
				// In pkg/runtime, we want to be able to
				// build the package with the go tool,
				// and it assumes these generated files already
				// exist (it does not know how to build them).
				// The 'clean' command can remove
				// the generated files.
Russ Cox's avatar
Russ Cox committed
813 814 815
				goto built;
			}
		}
816 817 818
		// Did not rebuild p.
		if(find(p, missing.p, missing.len) >= 0)
			fatal("missing file %s", p);
Russ Cox's avatar
Russ Cox committed
819 820 821
	built:;
	}

822 823 824 825 826
	// One more copy for package runtime.
	// The last batch was required for the generators.
	// This one is generated.
	if(streq(dir, "pkg/runtime")) {
		copy(bpathf(&b, "%s/zasm_GOOS_GOARCH.h", workdir),
Bobby Powers's avatar
Bobby Powers committed
827
			bpathf(&b1, "%s/zasm_%s_%s.h", bstr(&path), goos, goarch), 0);
828
	}
829

830
	// Generate .c files from .goc files.
831
	if(streq(dir, "pkg/runtime")) {
832 833 834 835
		for(i=0; i<files.len; i++) {
			p = files.p[i];
			if(!hassuffix(p, ".goc"))
				continue;
836
			// b = path/zp but with _goos_goarch.c instead of .goc
837 838
			bprintf(&b, "%s%sz%s", bstr(&path), slash, lastelem(p));
			b.len -= 4;
839
			bwritef(&b, "_%s_%s.c", goos, goarch);
840 841 842 843 844
			goc2c(p, bstr(&b));
			vadd(&files, bstr(&b));
		}
		vuniq(&files);
	}
845

846
	if((!streq(goos, gohostos) || !streq(goarch, gohostarch)) && isgo) {
Russ Cox's avatar
Russ Cox committed
847 848
		// We've generated the right files; the go command can do the build.
		if(vflag > 1)
849
			errprintf("skip build for cross-compile %s\n", dir);
Russ Cox's avatar
Russ Cox committed
850 851
		goto nobuild;
	}
852

853 854 855 856 857 858 859 860 861 862 863 864 865 866
	// The files generated by GNU Bison use macros that aren't
	// supported by the Plan 9 compilers so we have to use the
	// external preprocessor when compiling.
	usecpp = 0;
	if(streq(gohostos, "plan9")) {
		for(i=0; i<files.len; i++) {
			p = files.p[i];
			if(hassuffix(p, "y.tab.c") || hassuffix(p, "y.tab.h")){
				usecpp = 1;
				break;
			}
		}
	}

Russ Cox's avatar
Russ Cox committed
867 868 869 870 871 872 873 874 875
	// Compile the files.
	for(i=0; i<files.len; i++) {
		if(!hassuffix(files.p[i], ".c") && !hassuffix(files.p[i], ".s"))
			continue;
		name = lastelem(files.p[i]);

		vreset(&compile);
		if(!isgo) {
			// C library or tool.
876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895
			if(streq(gohostos, "plan9")) {
				vadd(&compile, bprintf(&b, "%sc", gohostchar));
				vadd(&compile, "-FTVw");
				if(usecpp)
					vadd(&compile, "-Bp+");
				vadd(&compile, bpathf(&b, "-I%s/include/plan9", goroot));
				vadd(&compile, bpathf(&b, "-I%s/include/plan9/%s", goroot, gohostarch));
			} else {
				vcopy(&compile, gccargs.p, gccargs.len);
				vadd(&compile, "-c");
				if(streq(gohostarch, "amd64"))
					vadd(&compile, "-m64");
				else if(streq(gohostarch, "386"))
					vadd(&compile, "-m32");
				if(streq(dir, "lib9"))
					vadd(&compile, "-DPLAN9PORT");
	
				vadd(&compile, "-I");
				vadd(&compile, bpathf(&b, "%s/include", goroot));
			}
896

Russ Cox's avatar
Russ Cox committed
897 898
			vadd(&compile, "-I");
			vadd(&compile, bstr(&path));
899

Russ Cox's avatar
Russ Cox committed
900
			// lib9/goos.c gets the default constants hard-coded.
Russ Cox's avatar
Russ Cox committed
901
			if(streq(name, "goos.c")) {
902 903 904 905
				vadd(&compile, "-D");
				vadd(&compile, bprintf(&b, "GOOS=\"%s\"", goos));
				vadd(&compile, "-D");
				vadd(&compile, bprintf(&b, "GOARCH=\"%s\"", goarch));
Gustavo Niemeyer's avatar
Gustavo Niemeyer committed
906
				bprintf(&b1, "%s", goroot_final);
907
				bsubst(&b1, "\\", "\\\\");  // turn into C string
908 909 910 911 912 913 914 915
				vadd(&compile, "-D");
				vadd(&compile, bprintf(&b, "GOROOT=\"%s\"", bstr(&b1)));
				vadd(&compile, "-D");
				vadd(&compile, bprintf(&b, "GOVERSION=\"%s\"", goversion));
				vadd(&compile, "-D");
				vadd(&compile, bprintf(&b, "GOARM=\"%s\"", goarm));
				vadd(&compile, "-D");
				vadd(&compile, bprintf(&b, "GO386=\"%s\"", go386));
Russ Cox's avatar
Russ Cox committed
916
			}
917

Russ Cox's avatar
Russ Cox committed
918 919 920
			// gc/lex.c records the GOEXPERIMENT setting used during the build.
			if(streq(name, "lex.c")) {
				xgetenv(&b, "GOEXPERIMENT");
921 922
				vadd(&compile, "-D");
				vadd(&compile, bprintf(&b1, "GOEXPERIMENT=\"%s\"", bstr(&b)));
Russ Cox's avatar
Russ Cox committed
923 924 925
			}
		} else {
			// Supporting files for a Go package.
926
			if(hassuffix(files.p[i], ".s"))
Russ Cox's avatar
Russ Cox committed
927
				vadd(&compile, bpathf(&b, "%s/%sa", tooldir, gochar));
928
			else {
Russ Cox's avatar
Russ Cox committed
929
				vadd(&compile, bpathf(&b, "%s/%sc", tooldir, gochar));
930 931 932
				vadd(&compile, "-F");
				vadd(&compile, "-V");
				vadd(&compile, "-w");
Russ Cox's avatar
Russ Cox committed
933 934 935
			}
			vadd(&compile, "-I");
			vadd(&compile, workdir);
936 937 938 939
			vadd(&compile, "-D");
			vadd(&compile, bprintf(&b, "GOOS_%s", goos));
			vadd(&compile, "-D");
			vadd(&compile, bprintf(&b, "GOARCH_%s", goarch));
940
		}
Russ Cox's avatar
Russ Cox committed
941

Russ Cox's avatar
Russ Cox committed
942 943
		bpathf(&b, "%s/%s", workdir, lastelem(files.p[i]));
		doclean = 1;
944 945 946 947 948 949 950 951
		if(!isgo && streq(gohostos, "darwin")) {
			// To debug C programs on OS X, it is not enough to say -ggdb
			// on the command line.  You have to leave the object files
			// lying around too.  Leave them in pkg/obj/, which does not
			// get removed when this tool exits.
			bpathf(&b1, "%s/pkg/obj/%s", goroot, dir);
			xmkdirall(bstr(&b1));
			bpathf(&b, "%s/%s", bstr(&b1), lastelem(files.p[i]));
Russ Cox's avatar
Russ Cox committed
952 953
			doclean = 0;
		}
954

955 956 957 958 959
		// Change the last character of the output file (which was c or s).
		if(streq(gohostos, "plan9"))
			b.p[b.len-1] = gohostchar[0];
		else
			b.p[b.len-1] = 'o';
Russ Cox's avatar
Russ Cox committed
960 961 962
		vadd(&compile, "-o");
		vadd(&compile, bstr(&b));
		vadd(&compile, files.p[i]);
963
		bgrunv(bstr(&path), CheckExit, &compile);
Russ Cox's avatar
Russ Cox committed
964

965
		vadd(&link, bstr(&b));
Russ Cox's avatar
Russ Cox committed
966 967
		if(doclean)
			vadd(&clean, bstr(&b));
Russ Cox's avatar
Russ Cox committed
968
	}
969
	bgwait();
970

Russ Cox's avatar
Russ Cox committed
971 972 973 974
	if(isgo) {
		// The last loop was compiling individual files.
		// Hand the Go files to the compiler en masse.
		vreset(&compile);
Russ Cox's avatar
Russ Cox committed
975
		vadd(&compile, bpathf(&b, "%s/%sg", tooldir, gochar));
Russ Cox's avatar
Russ Cox committed
976

977
		bpathf(&b, "%s/_go_.%s", workdir, gochar);
Russ Cox's avatar
Russ Cox committed
978 979 980 981
		vadd(&compile, "-o");
		vadd(&compile, bstr(&b));
		vadd(&clean, bstr(&b));
		vadd(&link, bstr(&b));
982

Russ Cox's avatar
Russ Cox committed
983 984 985 986 987
		vadd(&compile, "-p");
		if(hasprefix(dir, "pkg/"))
			vadd(&compile, dir+4);
		else
			vadd(&compile, "main");
988

Russ Cox's avatar
Russ Cox committed
989 990
		if(streq(dir, "pkg/runtime"))
			vadd(&compile, "-+");
991

Russ Cox's avatar
Russ Cox committed
992 993 994 995 996 997 998 999
		vcopy(&compile, go.p, go.len);

		runv(nil, bstr(&path), CheckExit, &compile);
	}

	if(!islib && !isgo) {
		// C binaries need the libraries explicitly, and -lm.
		vcopy(&link, lib.p, lib.len);
1000 1001
		if(!streq(gohostos, "plan9"))
			vadd(&link, "-lm");
Russ Cox's avatar
Russ Cox committed
1002 1003 1004
	}

	// Remove target before writing it.
Scott Lawrence's avatar
Scott Lawrence committed
1005
	xremove(link.p[targ]);
Russ Cox's avatar
Russ Cox committed
1006 1007 1008

	runv(nil, nil, CheckExit, &link);

Russ Cox's avatar
Russ Cox committed
1009
nobuild:
1010 1011 1012 1013
	// In package runtime, we install runtime.h and cgocall.h too,
	// for use by cgo compilation.
	if(streq(dir, "pkg/runtime")) {
		copy(bpathf(&b, "%s/pkg/%s_%s/cgocall.h", goroot, goos, goarch),
Bobby Powers's avatar
Bobby Powers committed
1014
			bpathf(&b1, "%s/src/pkg/runtime/cgocall.h", goroot), 0);
1015
		copy(bpathf(&b, "%s/pkg/%s_%s/runtime.h", goroot, goos, goarch),
Bobby Powers's avatar
Bobby Powers committed
1016
			bpathf(&b1, "%s/src/pkg/runtime/runtime.h", goroot), 0);
1017 1018 1019
	}


Russ Cox's avatar
Russ Cox committed
1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054
out:
	for(i=0; i<clean.len; i++)
		xremove(clean.p[i]);

	bfree(&b);
	bfree(&b1);
	bfree(&path);
	vfree(&compile);
	vfree(&files);
	vfree(&link);
	vfree(&go);
	vfree(&missing);
	vfree(&clean);
	vfree(&lib);
	vfree(&extra);
}

// matchfield reports whether the field matches this build.
static bool
matchfield(char *f)
{
	return streq(f, goos) || streq(f, goarch) || streq(f, "cmd_go_bootstrap");
}

// shouldbuild reports whether we should build this file.
// It applies the same rules that are used with context tags
// in package go/build, except that the GOOS and GOARCH
// can appear anywhere in the file name, not just after _.
// In particular, they can be the entire file name (like windows.c).
// We also allow the special tag cmd_go_bootstrap.
// See ../go/bootstrap.go and package go/build.
static bool
shouldbuild(char *file, char *dir)
{
	char *name, *p;
1055
	int i, j, ret;
Russ Cox's avatar
Russ Cox committed
1056 1057
	Buf b;
	Vec lines, fields;
1058

1059 1060 1061 1062
	// On Plan 9, most of the libraries are already present.
	// The main exception is libmach which has been modified
	// in various places to support Go object files.
	if(streq(gohostos, "plan9")) {
1063 1064 1065 1066
		if(streq(dir, "lib9")) {
			name = lastelem(file);
			if(streq(name, "goos.c") || streq(name, "flag.c"))
				return 1;
1067
			return 0;
1068
		}
1069 1070 1071 1072
		if(streq(dir, "libbio"))
			return 0;
	}
	
Russ Cox's avatar
Russ Cox committed
1073 1074 1075 1076 1077 1078 1079 1080
	// Check file name for GOOS or GOARCH.
	name = lastelem(file);
	for(i=0; i<nelem(okgoos); i++)
		if(contains(name, okgoos[i]) && !streq(okgoos[i], goos))
			return 0;
	for(i=0; i<nelem(okgoarch); i++)
		if(contains(name, okgoarch[i]) && !streq(okgoarch[i], goarch))
			return 0;
1081

Russ Cox's avatar
Russ Cox committed
1082 1083 1084
	// Omit test files.
	if(contains(name, "_test"))
		return 0;
1085

1086 1087 1088 1089 1090 1091
	// cmd/go/doc.go has a giant /* */ comment before
	// it gets to the important detail that it is not part of
	// package main.  We don't parse those comments,
	// so special case that file.
	if(hassuffix(file, "cmd/go/doc.go") || hassuffix(file, "cmd\\go\\doc.go"))
		return 0;
Russ Cox's avatar
Russ Cox committed
1092 1093
	if(hassuffix(file, "cmd/cgo/doc.go") || hassuffix(file, "cmd\\cgo\\doc.go"))
		return 0;
Russ Cox's avatar
Russ Cox committed
1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112

	// Check file contents for // +build lines.
	binit(&b);
	vinit(&lines);
	vinit(&fields);

	ret = 1;
	readfile(&b, file);
	splitlines(&lines, bstr(&b));
	for(i=0; i<lines.len; i++) {
		p = lines.p[i];
		while(*p == ' ' || *p == '\t' || *p == '\r' || *p == '\n')
			p++;
		if(*p == '\0')
			continue;
		if(contains(p, "package documentation")) {
			ret = 0;
			goto out;
		}
Russ Cox's avatar
Russ Cox committed
1113
		if(contains(p, "package main") && !streq(dir, "cmd/go") && !streq(dir, "cmd/cgo")) {
Russ Cox's avatar
Russ Cox committed
1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137
			ret = 0;
			goto out;
		}
		if(!hasprefix(p, "//"))
			break;
		if(!contains(p, "+build"))
			continue;
		splitfields(&fields, lines.p[i]);
		if(fields.len < 2 || !streq(fields.p[1], "+build"))
			continue;
		for(j=2; j<fields.len; j++) {
			p = fields.p[j];
			if((*p == '!' && !matchfield(p+1)) || matchfield(p))
				goto fieldmatch;
		}
		ret = 0;
		goto out;
	fieldmatch:;
	}

out:
	bfree(&b);
	vfree(&lines);
	vfree(&fields);
1138

Russ Cox's avatar
Russ Cox committed
1139 1140 1141 1142 1143
	return ret;
}

// copy copies the file src to dst, via memory (so only good for small files).
static void
Bobby Powers's avatar
Bobby Powers committed
1144
copy(char *dst, char *src, int exec)
Russ Cox's avatar
Russ Cox committed
1145 1146
{
	Buf b;
1147

1148
	if(vflag > 1)
1149
		errprintf("cp %s %s\n", src, dst);
1150

Russ Cox's avatar
Russ Cox committed
1151 1152
	binit(&b);
	readfile(&b, src);
Bobby Powers's avatar
Bobby Powers committed
1153
	writefile(&b, dst, exec);
Russ Cox's avatar
Russ Cox committed
1154 1155 1156 1157 1158 1159 1160 1161
	bfree(&b);
}

// buildorder records the order of builds for the 'go bootstrap' command.
static char *buildorder[] = {
	"lib9",
	"libbio",
	"libmach",
1162

1163
	"misc/pprof",
Russ Cox's avatar
Russ Cox committed
1164

1165
	"cmd/addr2line",
Russ Cox's avatar
Russ Cox committed
1166 1167
	"cmd/cov",
	"cmd/nm",
1168
	"cmd/objdump",
Russ Cox's avatar
Russ Cox committed
1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216
	"cmd/pack",
	"cmd/prof",

	"cmd/cc",  // must be before c
	"cmd/gc",  // must be before g
	"cmd/%sl",  // must be before a, c, g
	"cmd/%sa",
	"cmd/%sc",
	"cmd/%sg",

	// The dependency order here was copied from a buildscript
	// back when there were build scripts.  Will have to
	// be maintained by hand, but shouldn't change very
	// often.
	"pkg/runtime",
	"pkg/errors",
	"pkg/sync/atomic",
	"pkg/sync",
	"pkg/io",
	"pkg/unicode",
	"pkg/unicode/utf8",
	"pkg/unicode/utf16",
	"pkg/bytes",
	"pkg/math",
	"pkg/strings",
	"pkg/strconv",
	"pkg/bufio",
	"pkg/sort",
	"pkg/container/heap",
	"pkg/encoding/base64",
	"pkg/syscall",
	"pkg/time",
	"pkg/os",
	"pkg/reflect",
	"pkg/fmt",
	"pkg/encoding/json",
	"pkg/flag",
	"pkg/path/filepath",
	"pkg/path",
	"pkg/io/ioutil",
	"pkg/log",
	"pkg/regexp/syntax",
	"pkg/regexp",
	"pkg/go/token",
	"pkg/go/scanner",
	"pkg/go/ast",
	"pkg/go/parser",
	"pkg/os/exec",
Alex Brainman's avatar
Alex Brainman committed
1217
	"pkg/os/signal",
Russ Cox's avatar
Russ Cox committed
1218 1219 1220
	"pkg/net/url",
	"pkg/text/template/parse",
	"pkg/text/template",
1221
	"pkg/go/doc",
1222
	"pkg/go/build",
Russ Cox's avatar
Russ Cox committed
1223 1224 1225
	"cmd/go",
};

1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241
// cleantab records the directories to clean in 'go clean'.
// It is bigger than the buildorder because we clean all the
// compilers but build only the $GOARCH ones.
static char *cleantab[] = {
	"cmd/5a",
	"cmd/5c",
	"cmd/5g",
	"cmd/5l",
	"cmd/6a",
	"cmd/6c",
	"cmd/6g",
	"cmd/6l",
	"cmd/8a",
	"cmd/8c",
	"cmd/8g",
	"cmd/8l",
1242
	"cmd/addr2line",
1243 1244 1245 1246 1247
	"cmd/cc",
	"cmd/cov",
	"cmd/gc",
	"cmd/go",
	"cmd/nm",
1248
	"cmd/objdump",
1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263
	"cmd/pack",
	"cmd/prof",
	"lib9",
	"libbio",
	"libmach",
	"pkg/bufio",
	"pkg/bytes",
	"pkg/container/heap",
	"pkg/encoding/base64",
	"pkg/encoding/json",
	"pkg/errors",
	"pkg/flag",
	"pkg/fmt",
	"pkg/go/ast",
	"pkg/go/build",
1264
	"pkg/go/doc",
1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300
	"pkg/go/parser",
	"pkg/go/scanner",
	"pkg/go/token",
	"pkg/io",
	"pkg/io/ioutil",
	"pkg/log",
	"pkg/math",
	"pkg/net/url",
	"pkg/os",
	"pkg/os/exec",
	"pkg/path",
	"pkg/path/filepath",
	"pkg/reflect",
	"pkg/regexp",
	"pkg/regexp/syntax",
	"pkg/runtime",
	"pkg/sort",
	"pkg/strconv",
	"pkg/strings",
	"pkg/sync",
	"pkg/sync/atomic",
	"pkg/syscall",
	"pkg/text/template",
	"pkg/text/template/parse",
	"pkg/time",
	"pkg/unicode",
	"pkg/unicode/utf16",
	"pkg/unicode/utf8",
};

static void
clean(void)
{
	int i, j, k;
	Buf b, path;
	Vec dir;
1301

1302 1303 1304
	binit(&b);
	binit(&path);
	vinit(&dir);
1305

1306
	for(i=0; i<nelem(cleantab); i++) {
1307 1308
		if((streq(cleantab[i], "cmd/cov") || streq(cleantab[i], "cmd/prof")) && !isdir(cleantab[i]))
			continue;
1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322
		bpathf(&path, "%s/src/%s", goroot, cleantab[i]);
		xreaddir(&dir, bstr(&path));
		// Remove generated files.
		for(j=0; j<dir.len; j++) {
			for(k=0; k<nelem(gentab); k++) {
				if(hasprefix(dir.p[j], gentab[k].nameprefix))
					xremove(bpathf(&b, "%s/%s", bstr(&path), dir.p[j]));
			}
		}
		// Remove generated binary named for directory.
		if(hasprefix(cleantab[i], "cmd/"))
			xremove(bpathf(&b, "%s/%s", bstr(&path), cleantab[i]+4));
	}

1323 1324 1325 1326 1327 1328 1329 1330 1331
	// remove src/pkg/runtime/z* unconditionally
	vreset(&dir);
	bpathf(&path, "%s/src/pkg/runtime", goroot);
	xreaddir(&dir, bstr(&path));
	for(j=0; j<dir.len; j++) {
		if(hasprefix(dir.p[j], "z"))
			xremove(bpathf(&b, "%s/%s", bstr(&path), dir.p[j]));
	}

Russ Cox's avatar
Russ Cox committed
1332 1333 1334
	if(rebuildall) {
		// Remove object tree.
		xremoveall(bpathf(&b, "%s/pkg/obj/%s_%s", goroot, gohostos, gohostarch));
1335

Russ Cox's avatar
Russ Cox committed
1336 1337 1338 1339 1340 1341 1342 1343
		// Remove installed packages and tools.
		xremoveall(bpathf(&b, "%s/pkg/%s_%s", goroot, gohostos, gohostarch));
		xremoveall(bpathf(&b, "%s/pkg/%s_%s", goroot, goos, goarch));
		xremoveall(tooldir);

		// Remove cached version info.
		xremove(bpathf(&b, "%s/VERSION.cache", goroot));
	}
1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383

	bfree(&b);
	bfree(&path);
	vfree(&dir);
}

/*
 * command implementations
 */

void
usage(void)
{
	xprintf("usage: go tool dist [command]\n"
		"Commands are:\n"
		"\n"
		"banner         print installation banner\n"
		"bootstrap      rebuild everything\n"
		"clean          deletes all built files\n"
		"env [-p]       print environment (-p: include $PATH)\n"
		"install [dir]  install individual directory\n"
		"version        print Go version\n"
		"\n"
		"All commands take -v flags to emit extra information.\n"
	);
	xexit(2);
}

// The env command prints the default environment.
void
cmdenv(int argc, char **argv)
{
	bool pflag;
	char *sep;
	Buf b, b1;
	char *format;

	binit(&b);
	binit(&b1);

Russ Cox's avatar
Russ Cox committed
1384
	format = "%s=\"%s\"\n";
1385 1386
	pflag = 0;
	ARGBEGIN{
1387 1388 1389
	case '9':
		format = "%s='%s'\n";
		break;
1390 1391 1392 1393 1394 1395 1396
	case 'p':
		pflag = 1;
		break;
	case 'v':
		vflag++;
		break;
	case 'w':
Russ Cox's avatar
Russ Cox committed
1397
		format = "set %s=%s\r\n";
1398 1399 1400 1401 1402 1403 1404
		break;
	default:
		usage();
	}ARGEND

	if(argc > 0)
		usage();
1405

1406
	xprintf(format, "GOROOT", goroot);
1407
	xprintf(format, "GOBIN", gobin);
1408 1409
	xprintf(format, "GOARCH", goarch);
	xprintf(format, "GOOS", goos);
Russ Cox's avatar
Russ Cox committed
1410 1411 1412
	xprintf(format, "GOHOSTARCH", gohostarch);
	xprintf(format, "GOHOSTOS", gohostos);
	xprintf(format, "GOTOOLDIR", tooldir);
Russ Cox's avatar
Russ Cox committed
1413
	xprintf(format, "GOCHAR", gochar);
1414 1415
	if(streq(goarch, "arm"))
		xprintf(format, "GOARM", goarm);
1416 1417
	if(streq(goarch, "386"))
		xprintf(format, "GO386", go386);
Russ Cox's avatar
Russ Cox committed
1418

1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431
	if(pflag) {
		sep = ":";
		if(streq(gohostos, "windows"))
			sep = ";";
		xgetenv(&b, "PATH");
		bprintf(&b1, "%s%s%s", gobin, sep, bstr(&b));
		xprintf(format, "PATH", bstr(&b1));
	}

	bfree(&b);
	bfree(&b1);
}

Russ Cox's avatar
Russ Cox committed
1432 1433 1434 1435 1436 1437 1438
// The bootstrap command runs a build from scratch,
// stopping at having installed the go_bootstrap command.
void
cmdbootstrap(int argc, char **argv)
{
	int i;
	Buf b;
Russ Cox's avatar
Russ Cox committed
1439 1440 1441
	char *oldgoos, *oldgoarch, *oldgochar;

	binit(&b);
Russ Cox's avatar
Russ Cox committed
1442

1443
	ARGBEGIN{
Russ Cox's avatar
Russ Cox committed
1444 1445 1446
	case 'a':
		rebuildall = 1;
		break;
1447 1448 1449 1450 1451 1452 1453 1454 1455 1456
	case 'v':
		vflag++;
		break;
	default:
		usage();
	}ARGEND

	if(argc > 0)
		usage();

1457 1458
	if(rebuildall)
		clean();
1459
	goversion = findgoversion();
Russ Cox's avatar
Russ Cox committed
1460
	setup();
1461

1462 1463 1464
	xsetenv("GOROOT", goroot);
	xsetenv("GOROOT_FINAL", goroot_final);

Russ Cox's avatar
Russ Cox committed
1465 1466 1467 1468 1469 1470 1471 1472 1473
	// For the main bootstrap, building for host os/arch.
	oldgoos = goos;
	oldgoarch = goarch;
	oldgochar = gochar;
	goos = gohostos;
	goarch = gohostarch;
	gochar = gohostchar;
	xsetenv("GOARCH", goarch);
	xsetenv("GOOS", goos);
1474

Russ Cox's avatar
Russ Cox committed
1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490
	for(i=0; i<nelem(buildorder); i++) {
		install(bprintf(&b, buildorder[i], gohostchar));
		if(!streq(oldgochar, gohostchar) && xstrstr(buildorder[i], "%s"))
			install(bprintf(&b, buildorder[i], oldgochar));
	}

	goos = oldgoos;
	goarch = oldgoarch;
	gochar = oldgochar;
	xsetenv("GOARCH", goarch);
	xsetenv("GOOS", goos);

	// Build pkg/runtime for actual goos/goarch too.
	if(!streq(goos, gohostos) || !streq(goarch, gohostarch))
		install("pkg/runtime");

Russ Cox's avatar
Russ Cox committed
1491 1492 1493
	bfree(&b);
}

1494 1495 1496 1497
static char*
defaulttarg(void)
{
	char *p;
1498
	Buf pwd, src, real_src;
1499

1500 1501
	binit(&pwd);
	binit(&src);
1502
	binit(&real_src);
1503

1504 1505 1506 1507
	// xgetwd might return a path with symlinks fully resolved, and if
	// there happens to be symlinks in goroot, then the hasprefix test
	// will never succeed. Instead, we use xrealwd to get a canonical
	// goroot/src before the comparison to avoid this problem.
1508 1509 1510
	xgetwd(&pwd);
	p = btake(&pwd);
	bpathf(&src, "%s/src/", goroot);
1511 1512 1513 1514 1515 1516 1517
	xrealwd(&real_src, bstr(&src));
	if(!hasprefix(p, bstr(&real_src)))
		fatal("current directory %s is not under %s", p, bstr(&real_src));
	p += real_src.len;
	// guard againt xrealwd return the directory without the trailing /
	if(*p == slash[0])
		p++;
1518 1519 1520

	bfree(&pwd);
	bfree(&src);
1521
	bfree(&real_src);
1522

1523 1524 1525
	return p;
}

Russ Cox's avatar
Russ Cox committed
1526 1527 1528 1529 1530 1531
// Install installs the list of packages named on the command line.
void
cmdinstall(int argc, char **argv)
{
	int i;

1532 1533 1534 1535 1536 1537 1538
	ARGBEGIN{
	case 'v':
		vflag++;
		break;
	default:
		usage();
	}ARGEND
1539

1540 1541 1542 1543
	if(argc == 0)
		install(defaulttarg());

	for(i=0; i<argc; i++)
Russ Cox's avatar
Russ Cox committed
1544 1545
		install(argv[i]);
}
1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570

// Clean deletes temporary objects.
// Clean -i deletes the installed objects too.
void
cmdclean(int argc, char **argv)
{
	ARGBEGIN{
	case 'v':
		vflag++;
		break;
	default:
		usage();
	}ARGEND

	if(argc > 0)
		usage();

	clean();
}

// Banner prints the 'now you've installed Go' banner.
void
cmdbanner(int argc, char **argv)
{
	char *pathsep;
1571
	Buf b, b1, search, path;
1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586

	ARGBEGIN{
	case 'v':
		vflag++;
		break;
	default:
		usage();
	}ARGEND

	if(argc > 0)
		usage();

	binit(&b);
	binit(&b1);
	binit(&search);
1587
	binit(&path);
1588

1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604
	xprintf("\n");
	xprintf("---\n");
	xprintf("Installed Go for %s/%s in %s\n", goos, goarch, goroot);
	xprintf("Installed commands in %s\n", gobin);

	// Check that gobin appears in $PATH.
	xgetenv(&b, "PATH");
	pathsep = ":";
	if(streq(gohostos, "windows"))
		pathsep = ";";
	bprintf(&b1, "%s%s%s", pathsep, bstr(&b), pathsep);
	bprintf(&search, "%s%s%s", pathsep, gobin, pathsep);
	if(xstrstr(bstr(&b1), bstr(&search)) == nil)
		xprintf("*** You need to add %s to your PATH.\n", gobin);

	if(streq(gohostos, "darwin")) {
1605 1606 1607 1608
		if(isfile(bpathf(&path, "%s/cov", tooldir)))
			xprintf("\n"
				"On OS X the debuggers must be installed setgid procmod.\n"
				"Read and run ./sudo.bash to install the debuggers.\n");
1609
	}
1610

1611
	if(!xsamefile(goroot_final, goroot)) {
1612 1613 1614 1615 1616 1617 1618 1619
		xprintf("\n"
			"The binaries expect %s to be copied or moved to %s\n",
			goroot, goroot_final);
	}

	bfree(&b);
	bfree(&b1);
	bfree(&search);
1620
	bfree(&path);
1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637
}

// Version prints the Go version.
void
cmdversion(int argc, char **argv)
{
	ARGBEGIN{
	case 'v':
		vflag++;
		break;
	default:
		usage();
	}ARGEND

	if(argc > 0)
		usage();

1638
	xprintf("%s\n", goversion);
1639
}