github.com/ice-blockchain/go/src@v0.0.0-20240403114104-1564d284e521/make.bat (about)

     1  :: Copyright 2012 The Go Authors. All rights reserved.
     2  :: Use of this source code is governed by a BSD-style
     3  :: license that can be found in the LICENSE file.
     4  
     5  :: Environment variables that control make.bat:
     6  ::
     7  :: GOHOSTARCH: The architecture for host tools (compilers and
     8  :: binaries).  Binaries of this type must be executable on the current
     9  :: system, so the only common reason to set this is to set
    10  :: GOHOSTARCH=386 on an amd64 machine.
    11  ::
    12  :: GOARCH: The target architecture for installed packages and tools.
    13  ::
    14  :: GOOS: The target operating system for installed packages and tools.
    15  ::
    16  :: GO_GCFLAGS: Additional go tool compile arguments to use when
    17  :: building the packages and commands.
    18  ::
    19  :: GO_LDFLAGS: Additional go tool link arguments to use when
    20  :: building the commands.
    21  ::
    22  :: CGO_ENABLED: Controls cgo usage during the build. Set it to 1
    23  :: to include all cgo related files, .c and .go file with "cgo"
    24  :: build directive, in the build. Set it to 0 to ignore them.
    25  ::
    26  :: CC: Command line to run to compile C code for GOHOSTARCH.
    27  :: Default is "gcc".
    28  ::
    29  :: CC_FOR_TARGET: Command line to run compile C code for GOARCH.
    30  :: This is used by cgo. Default is CC.
    31  ::
    32  :: FC: Command line to run to compile Fortran code.
    33  :: This is used by cgo. Default is "gfortran".
    34  
    35  @echo off
    36  
    37  :: Keep environment variables within this script
    38  :: unless invoked with --no-local.
    39  if x%1==x-no-local goto nolocal
    40  if x%2==x-no-local goto nolocal
    41  if x%3==x-no-local goto nolocal
    42  if x%4==x-no-local goto nolocal
    43  if x%1==x--no-local goto nolocal
    44  if x%2==x--no-local goto nolocal
    45  if x%3==x--no-local goto nolocal
    46  if x%4==x--no-local goto nolocal
    47  setlocal
    48  :nolocal
    49  
    50  set GOBUILDFAIL=0
    51  
    52  if exist make.bat goto ok
    53  echo Must run make.bat from Go src directory.
    54  goto fail
    55  :ok
    56  
    57  :: Clean old generated file that will cause problems in the build.
    58  del /F ".\pkg\runtime\runtime_defs.go" 2>NUL
    59  
    60  :: Set GOROOT for build.
    61  cd ..
    62  set GOROOT_TEMP=%CD%
    63  set GOROOT=
    64  cd src
    65  set vflag=
    66  if x%1==x-v set vflag=-v
    67  if x%2==x-v set vflag=-v
    68  if x%3==x-v set vflag=-v
    69  if x%4==x-v set vflag=-v
    70  
    71  if not exist ..\bin\tool mkdir ..\bin\tool
    72  
    73  :: Calculating GOROOT_BOOTSTRAP
    74  if not "x%GOROOT_BOOTSTRAP%"=="x" goto bootstrapset
    75  for /f "tokens=*" %%g in ('where go 2^>nul') do (
    76  	if "x%GOROOT_BOOTSTRAP%"=="x" (
    77  		setlocal
    78  		call :nogoenv
    79  		for /f "tokens=*" %%i in ('"%%g" env GOROOT 2^>nul') do (
    80  			endlocal
    81  			if /I not "%%i"=="%GOROOT_TEMP%" (
    82  				set GOROOT_BOOTSTRAP=%%i
    83  			)
    84  		)
    85  	)
    86  )
    87  
    88  set bootgo=1.20.6
    89  if "x%GOROOT_BOOTSTRAP%"=="x" if exist "%HOMEDRIVE%%HOMEPATH%\go%bootgo%" set GOROOT_BOOTSTRAP=%HOMEDRIVE%%HOMEPATH%\go%bootgo%
    90  if "x%GOROOT_BOOTSTRAP%"=="x" if exist "%HOMEDRIVE%%HOMEPATH%\sdk\go%bootgo%" set GOROOT_BOOTSTRAP=%HOMEDRIVE%%HOMEPATH%\sdk\go%bootgo%
    91  if "x%GOROOT_BOOTSTRAP%"=="x" set GOROOT_BOOTSTRAP=%HOMEDRIVE%%HOMEPATH%\Go1.4
    92  
    93  :bootstrapset
    94  if not exist "%GOROOT_BOOTSTRAP%\bin\go.exe" goto bootstrapfail
    95  set GOROOT=%GOROOT_TEMP%
    96  set GOROOT_TEMP=
    97  
    98  setlocal
    99  call :nogoenv
   100  for /f "tokens=*" %%g IN ('"%GOROOT_BOOTSTRAP%\bin\go" version') do (set GOROOT_BOOTSTRAP_VERSION=%%g)
   101  set GOROOT_BOOTSTRAP_VERSION=%GOROOT_BOOTSTRAP_VERSION:go version =%
   102  echo Building Go cmd/dist using %GOROOT_BOOTSTRAP%. (%GOROOT_BOOTSTRAP_VERSION%)
   103  if x%vflag==x-v echo cmd/dist
   104  set GOROOT=%GOROOT_BOOTSTRAP%
   105  set GOBIN=
   106  "%GOROOT_BOOTSTRAP%\bin\go.exe" build -o cmd\dist\dist.exe .\cmd\dist
   107  endlocal
   108  if errorlevel 1 goto fail
   109  .\cmd\dist\dist.exe env -w -p >env.bat
   110  if errorlevel 1 goto fail
   111  call .\env.bat
   112  del env.bat
   113  if x%vflag==x-v echo.
   114  
   115  if x%1==x-dist-tool goto copydist
   116  if x%2==x-dist-tool goto copydist
   117  if x%3==x-dist-tool goto copydist
   118  if x%4==x-dist-tool goto copydist
   119  if x%1==x--dist-tool goto copydist
   120  if x%2==x--dist-tool goto copydist
   121  if x%3==x--dist-tool goto copydist
   122  if x%4==x--dist-tool goto copydist
   123  
   124  set bootstrapflags=
   125  if x%1==x-no-clean set bootstrapflags=-no-clean
   126  if x%2==x-no-clean set bootstrapflags=-no-clean
   127  if x%3==x-no-clean set bootstrapflags=-no-clean
   128  if x%4==x-no-clean set bootstrapflags=-no-clean
   129  if x%1==x--no-clean set bootstrapflags=-no-clean
   130  if x%2==x--no-clean set bootstrapflags=-no-clean
   131  if x%3==x--no-clean set bootstrapflags=-no-clean
   132  if x%4==x--no-clean set bootstrapflags=-no-clean
   133  if x%1==x-no-banner set bootstrapflags=%bootstrapflags% -no-banner
   134  if x%2==x-no-banner set bootstrapflags=%bootstrapflags% -no-banner
   135  if x%3==x-no-banner set bootstrapflags=%bootstrapflags% -no-banner
   136  if x%4==x-no-banner set bootstrapflags=%bootstrapflags% -no-banner
   137  if x%1==x--no-banner set bootstrapflags=%bootstrapflags% -no-banner
   138  if x%2==x--no-banner set bootstrapflags=%bootstrapflags% -no-banner
   139  if x%3==x--no-banner set bootstrapflags=%bootstrapflags% -no-banner
   140  if x%4==x--no-banner set bootstrapflags=%bootstrapflags% -no-banner
   141  if x%1==x-distpack set bootstrapflags=%bootstrapflags% -distpack
   142  if x%2==x-distpack set bootstrapflags=%bootstrapflags% -distpack
   143  if x%3==x-distpack set bootstrapflags=%bootstrapflags% -distpack
   144  if x%4==x-distpack set bootstrapflags=%bootstrapflags% -distpack
   145  if x%1==x--distpack set bootstrapflags=%bootstrapflags% -distpack
   146  if x%2==x--distpack set bootstrapflags=%bootstrapflags% -distpack
   147  if x%3==x--distpack set bootstrapflags=%bootstrapflags% -distpack
   148  if x%4==x--distpack set bootstrapflags=%bootstrapflags% -distpack
   149  
   150  :: Run dist bootstrap to complete make.bash.
   151  :: Bootstrap installs a proper cmd/dist, built with the new toolchain.
   152  :: Throw ours, built with the bootstrap toolchain, away after bootstrap.
   153  .\cmd\dist\dist.exe bootstrap -a %vflag% %bootstrapflags%
   154  if errorlevel 1 goto fail
   155  del .\cmd\dist\dist.exe
   156  goto :eof
   157  
   158  :: DO NOT ADD ANY NEW CODE HERE.
   159  :: The bootstrap+del above are the final step of make.bat.
   160  :: If something must be added, add it to cmd/dist's cmdbootstrap,
   161  :: to avoid needing three copies in three different shell languages
   162  :: (make.bash, make.bat, make.rc).
   163  
   164  :copydist
   165  mkdir "%GOTOOLDIR%" 2>NUL
   166  copy cmd\dist\dist.exe "%GOTOOLDIR%\"
   167  goto :eof
   168  
   169  :nogoenv
   170  set GO111MODULE=off
   171  set GOENV=off
   172  set GOOS=
   173  set GOARCH=
   174  set GOEXPERIMENT=
   175  set GOFLAGS=
   176  goto :eof
   177  
   178  :bootstrapfail
   179  echo ERROR: Cannot find %GOROOT_BOOTSTRAP%\bin\go.exe
   180  echo Set GOROOT_BOOTSTRAP to a working Go tree ^>= Go %bootgo%.
   181  
   182  :fail
   183  set GOBUILDFAIL=1
   184  if x%GOBUILDEXIT%==x1 exit %GOBUILDFAIL%