diff options
| author | Russ Cox <rsc@golang.org> | 2011-12-16 15:33:58 -0500 |
|---|---|---|
| committer | Russ Cox <rsc@golang.org> | 2011-12-16 15:33:58 -0500 |
| commit | 851f30136d79c9bb752ab56d3991bb3180a5aa5b (patch) | |
| tree | d58e6051bb8e79e4d286c7b2413b25f399d90af9 /src/pkg/runtime/rt0_linux_amd64.s | |
| parent | 474d64d26e8eb8d40bbe2d481513a2070d85ee54 (diff) | |
| download | go-851f30136d79c9bb752ab56d3991bb3180a5aa5b.tar.xz | |
runtime: make more build-friendly
Collapse the arch,os-specific directories into the main directory
by renaming xxx/foo.c to foo_xxx.c, and so on.
There are no substantial edits here, except to the Makefile.
The assumption is that the Go tool will #define GOOS_darwin
and GOARCH_amd64 and will make any file named something
like signals_darwin.h available as signals_GOOS.h during the
build. This replaces what used to be done with -I$(GOOS).
There is still work to be done to make runtime build with
standard tools, but this is a big step. After this we will have
to write a script to generate all the generated files so they
can be checked in (instead of generated during the build).
R=r, iant, r, lucio.dere
CC=golang-dev
https://golang.org/cl/5490053
Diffstat (limited to 'src/pkg/runtime/rt0_linux_amd64.s')
| -rw-r--r-- | src/pkg/runtime/rt0_linux_amd64.s | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/pkg/runtime/rt0_linux_amd64.s b/src/pkg/runtime/rt0_linux_amd64.s new file mode 100644 index 0000000000..dac9ae181b --- /dev/null +++ b/src/pkg/runtime/rt0_linux_amd64.s @@ -0,0 +1,10 @@ +// Copyright 2009 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. + +// Darwin and Linux use the same linkage to main + +TEXT _rt0_amd64_linux(SB),7,$-8 + MOVQ $_rt0_amd64(SB), AX + MOVQ SP, DI + JMP AX |
