github.com/zxy12/go_duplicate_1_12@v0.0.0-20200217043740-b1636fc0368b/src/make.bash (about)

     1  #!/usr/bin/env bash
     2  # Copyright 2009 The Go Authors. All rights reserved.
     3  # Use of this source code is governed by a BSD-style
     4  # license that can be found in the LICENSE file.
     5  
     6  # See golang.org/s/go15bootstrap for an overview of the build process.
     7  
     8  # Environment variables that control make.bash:
     9  #
    10  # GOROOT_FINAL: The expected final Go root, baked into binaries.
    11  # The default is the location of the Go tree during the build.
    12  #
    13  # GOHOSTARCH: The architecture for host tools (compilers and
    14  # binaries).  Binaries of this type must be executable on the current
    15  # system, so the only common reason to set this is to set
    16  # GOHOSTARCH=386 on an amd64 machine.
    17  #
    18  # GOARCH: The target architecture for installed packages and tools.
    19  #
    20  # GOOS: The target operating system for installed packages and tools.
    21  #
    22  # GO_GCFLAGS: Additional go tool compile arguments to use when
    23  # building the packages and commands.
    24  #
    25  # GO_LDFLAGS: Additional go tool link arguments to use when
    26  # building the commands.
    27  #
    28  # CGO_ENABLED: Controls cgo usage during the build. Set it to 1
    29  # to include all cgo related files, .c and .go file with "cgo"
    30  # build directive, in the build. Set it to 0 to ignore them.
    31  #
    32  # GO_EXTLINK_ENABLED: Set to 1 to invoke the host linker when building
    33  # packages that use cgo.  Set to 0 to do all linking internally.  This
    34  # controls the default behavior of the linker's -linkmode option.  The
    35  # default value depends on the system.
    36  #
    37  # CC: Command line to run to compile C code for GOHOSTARCH.
    38  # Default is "gcc". Also supported: "clang".
    39  #
    40  # CC_FOR_TARGET: Command line to run to compile C code for GOARCH.
    41  # This is used by cgo.  Default is CC.
    42  #
    43  # CXX_FOR_TARGET: Command line to run to compile C++ code for GOARCH.
    44  # This is used by cgo. Default is CXX, or, if that is not set,
    45  # "g++" or "clang++".
    46  #
    47  # FC: Command line to run to compile Fortran code for GOARCH.
    48  # This is used by cgo. Default is "gfortran".
    49  #
    50  # PKG_CONFIG: Path to pkg-config tool. Default is "pkg-config".
    51  #
    52  # GO_DISTFLAGS: extra flags to provide to "dist bootstrap".
    53  # (Or just pass them to the make.bash command line.)
    54  #
    55  # GOBUILDTIMELOGFILE: If set, make.bash and all.bash write
    56  # timing information to this file. Useful for profiling where the
    57  # time goes when these scripts run.
    58  #
    59  # GOROOT_BOOTSTRAP: A working Go tree >= Go 1.4 for bootstrap.
    60  # If $GOROOT_BOOTSTRAP/bin/go is missing, $(go env GOROOT) is
    61  # tried for all "go" in $PATH. $HOME/go1.4 by default.
    62  
    63  set -e
    64  
    65  unset GOBIN # Issue 14340
    66  unset GOFLAGS
    67  unset GO111MODULE
    68  
    69  
    70  if [ ! -f run.bash ]; then
    71      echo 'make.bash must be run from $GOROOT/src' 1>&2
    72      exit 1
    73  fi
    74  
    75  if [ "$GOBUILDTIMELOGFILE" != "" ]; then
    76      echo $(LC_TIME=C date) start make.bash >"$GOBUILDTIMELOGFILE"
    77  fi
    78  
    79  # Test for Windows.
    80  case "$(uname)" in
    81  *MINGW* | *WIN32* | *CYGWIN*)
    82      echo 'ERROR: Do not use make.bash to build on Windows.'
    83      echo 'Use make.bat instead.'
    84      echo
    85      exit 1
    86      ;;
    87  esac
    88  
    89  # Test for bad ld.
    90  if ld --version 2>&1 | grep 'gold.* 2\.20' >/dev/null; then
    91      echo 'ERROR: Your system has gold 2.20 installed.'
    92      echo 'This version is shipped by Ubuntu even though'
    93      echo 'it is known not to work on Ubuntu.'
    94      echo 'Binaries built with this linker are likely to fail in mysterious ways.'
    95      echo
    96      echo 'Run sudo apt-get remove binutils-gold.'
    97      echo
    98      exit 1
    99  fi
   100  
   101  # Test for bad SELinux.
   102  # On Fedora 16 the selinux filesystem is mounted at /sys/fs/selinux,
   103  # so loop through the possible selinux mount points.
   104  for se_mount in /selinux /sys/fs/selinux
   105  do
   106      if [ -d $se_mount -a -f $se_mount/booleans/allow_execstack -a -x /usr/sbin/selinuxenabled ] && /usr/sbin/selinuxenabled; then
   107          if ! cat $se_mount/booleans/allow_execstack | grep -c '^1 1$' >> /dev/null ; then
   108              echo "WARNING: the default SELinux policy on, at least, Fedora 12 breaks "
   109              echo "Go. You can enable the features that Go needs via the following "
   110              echo "command (as root):"
   111              echo "  # setsebool -P allow_execstack 1"
   112              echo
   113              echo "Note that this affects your system globally! "
   114              echo
   115              echo "The build will continue in five seconds in case we "
   116              echo "misdiagnosed the issue..."
   117  
   118              sleep 5
   119          fi
   120      fi
   121  done
   122  
   123  # Test for debian/kFreeBSD.
   124  # cmd/dist will detect kFreeBSD as freebsd/$GOARCH, but we need to
   125  # disable cgo manually.
   126  if [ "$(uname -s)" = "GNU/kFreeBSD" ]; then
   127      export CGO_ENABLED=0
   128  fi
   129  
   130  # Clean old generated file that will cause problems in the build.
   131  rm -f ./runtime/runtime_defs.go
   132  
   133  # Finally!  Run the build.
   134  
   135  verbose=false
   136  vflag=""
   137  if [ "$1" = "-v" ]; then
   138      verbose=true
   139      vflag=-v
   140      shift
   141  fi
   142  
   143  echo export GOROOT_BOOTSTRAP=${GOROOT_BOOTSTRAP:-$HOME/go1.4}
   144  export GOROOT_BOOTSTRAP=${GOROOT_BOOTSTRAP:-$HOME/go1.4}
   145  echo export GOROOT="$(cd .. && pwd)"
   146  export GOROOT="$(cd .. && pwd)"
   147  IFS=$'\n'; for go_exe in $(type -ap go); do
   148      if [ ! -x "$GOROOT_BOOTSTRAP/bin/go" ]; then
   149          goroot=$(GOROOT='' GOOS='' GOARCH='' "$go_exe" env GOROOT)
   150          if [ "$goroot" != "$GOROOT" ]; then
   151              GOROOT_BOOTSTRAP=$goroot
   152          fi
   153      fi
   154  done; unset IFS
   155  echo "Building Go cmd/dist using $GOROOT_BOOTSTRAP."
   156  
   157  if $verbose; then
   158      echo cmd/dist
   159  fi
   160  
   161  
   162  if [ ! -x "$GOROOT_BOOTSTRAP/bin/go" ]; then
   163      echo "ERROR: Cannot find $GOROOT_BOOTSTRAP/bin/go." >&2
   164      echo "Set \$GOROOT_BOOTSTRAP to a working Go tree >= Go 1.4." >&2
   165      exit 1
   166  fi
   167  if [ "$GOROOT_BOOTSTRAP" = "$GOROOT" ]; then
   168      echo "ERROR: \$GOROOT_BOOTSTRAP must not be set to \$GOROOT" >&2
   169      echo "Set \$GOROOT_BOOTSTRAP to a working Go tree >= Go 1.4." >&2
   170      exit 1
   171  fi
   172  rm -f cmd/dist/dist
   173  GOROOT="$GOROOT_BOOTSTRAP" GOOS="" GOARCH="" "$GOROOT_BOOTSTRAP/bin/go" build -o cmd/dist/dist ./cmd/dist
   174  
   175  ./cmd/dist/dist env -p
   176  echo
   177  
   178  # -e doesn't propagate out of eval, so check success by hand.
   179  eval $(./cmd/dist/dist env -p || echo FAIL=true)
   180  if [ "$FAIL" = true ]; then
   181      exit 1
   182  fi
   183  
   184  if $verbose; then
   185      echo
   186  fi
   187  
   188  if [ "$1" = "--dist-tool" ]; then
   189      # Stop after building dist tool.
   190      mkdir -p "$GOTOOLDIR"
   191      if [ "$2" != "" ]; then
   192          cp cmd/dist/dist "$2"
   193      fi
   194      mv cmd/dist/dist "$GOTOOLDIR"/dist
   195      exit 0
   196  fi
   197  
   198  buildall="-a"
   199  if [ "$1" = "--no-clean" ]; then
   200      buildall=""
   201      shift
   202  fi
   203  echo
   204  echo "#### start bootstrap"
   205  
   206  # Run dist bootstrap to complete make.bash.
   207  # Bootstrap installs a proper cmd/dist, built with the new toolchain.
   208  # Throw ours, built with Go 1.4, away after bootstrap.
   209  echo ./cmd/dist/dist bootstrap $buildall $vflag $GO_DISTFLAGS "$@"
   210  ./cmd/dist/dist bootstrap $buildall $vflag $GO_DISTFLAGS "$@"
   211  rm -f ./cmd/dist/dist