summaryrefslogtreecommitdiff
path: root/src/make.bash
diff options
context:
space:
mode:
authorIan Lance Taylor <iant@golang.org>2013-03-29 16:33:35 -0700
committerIan Lance Taylor <iant@golang.org>2013-03-29 16:33:35 -0700
commit9a03bbb22c842fae25af564b1942eb9917d06148 (patch)
tree4068ac17b90b308053d6cc8c8585d71f505ecfe2 /src/make.bash
parentb59f45ec21700f49dd2d0f8fbf7ec1d4a758f6fc (diff)
downloadgo-9a03bbb22c842fae25af564b1942eb9917d06148.tar.gz
cmd/dist, cmd/ld: GO_EXTLINK_ENABLED=0 defaults to -linkmode=internal
Change build system to set GO_EXTLINK_ENABLED=0 by default for OS X 10.6, since the system linker has a bug and can not handle the object files generated by 6l. Fixes issue 5130. R=golang-dev, r CC=golang-dev https://codereview.appspot.com/8183043
Diffstat (limited to 'src/make.bash')
-rwxr-xr-xsrc/make.bash5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/make.bash b/src/make.bash
index 2d83b6f4d..8d0f6ebae 100755
--- a/src/make.bash
+++ b/src/make.bash
@@ -30,6 +30,11 @@
# to include all cgo related files, .c and .go file with "cgo"
# build directive, in the build. Set it to 0 to ignore them.
#
+# GO_EXTLINK_ENABLED: Set to 1 to invoke the host linker when building
+# packages that use cgo. Set to 0 to do all linking internally. This
+# controls the default behavior of the linker's -linkmode option. The
+# default value depends on the system.
+#
# CC: Command line to run to get at host C compiler.
# Default is "gcc". Also supported: "clang".