diff options
author | Ian Lance Taylor <iant@golang.org> | 2010-11-18 12:34:47 -0800 |
---|---|---|
committer | Ian Lance Taylor <iant@golang.org> | 2010-11-18 12:34:47 -0800 |
commit | 1b74d21c7df57ed229f6acb1926d3431c9012368 (patch) | |
tree | ca37194862663e9fe0e8e52381b8f86f3a4fe073 /src/pkg/runtime | |
parent | 07be09c9e8c3210709665d8463e1986d726aff28 (diff) | |
download | go-1b74d21c7df57ed229f6acb1926d3431c9012368.tar.gz |
Makefiles: Don't define _64BIT now that 6c does it by default.
R=rsc
CC=golang-dev
http://codereview.appspot.com/3207041
Diffstat (limited to 'src/pkg/runtime')
-rw-r--r-- | src/pkg/runtime/Makefile | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/pkg/runtime/Makefile b/src/pkg/runtime/Makefile index 58e0e76b5..a208458ed 100644 --- a/src/pkg/runtime/Makefile +++ b/src/pkg/runtime/Makefile @@ -12,13 +12,11 @@ SIZE_amd64=64 SIZE_arm=32 SIZE=$(SIZE_$(GOARCH)) -# Setup CFLAGS. Add -D_64BIT on 64-bit platforms (sorry). -CFLAGS_64=-D_64BIT # TODO(kaib): fix register allocation to honor extern register so we # can enable optimizations again. CFLAGS_arm=-N CFLAGS_windows=-D__WINDOWS__ -CFLAGS=-I$(GOOS) -I$(GOARCH) -I$(GOOS)/$(GOARCH) -wF $(CFLAGS_$(SIZE)) $(CFLAGS_$(GOARCH)) $(CFLAGS_$(GOOS)) +CFLAGS=-I$(GOOS) -I$(GOARCH) -I$(GOOS)/$(GOARCH) -wF $(CFLAGS_$(GOARCH)) $(CFLAGS_$(GOOS)) GOFILES=\ debug.go\ |