...

Text file src/make.bat

     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	:: GOROOT_FINAL: The expected final Go root, baked into binaries.
     8	:: The default is the location of the Go tree during the build.
     9	::
    10	:: GOHOSTARCH: The architecture for host tools (compilers and
    11	:: binaries).  Binaries of this type must be executable on the current
    12	:: system, so the only common reason to set this is to set
    13	:: GOHOSTARCH=386 on an amd64 machine.
    14	::
    15	:: GOARCH: The target architecture for installed packages and tools.
    16	::
    17	:: GOOS: The target operating system for installed packages and tools.
    18	::
    19	:: GO_GCFLAGS: Additional go tool compile arguments to use when
    20	:: building the packages and commands.
    21	::
    22	:: GO_LDFLAGS: Additional go tool link arguments to use when
    23	:: building the commands.
    24	::
    25	:: CGO_ENABLED: Controls cgo usage during the build. Set it to 1
    26	:: to include all cgo related files, .c and .go file with "cgo"
    27	:: build directive, in the build. Set it to 0 to ignore them.
    28	::
    29	:: CC: Command line to run to compile C code for GOHOSTARCH.
    30	:: Default is "gcc".
    31	::
    32	:: CC_FOR_TARGET: Command line to run compile C code for GOARCH.
    33	:: This is used by cgo. Default is CC.
    34	::
    35	:: FC: Command line to run to compile Fortran code.
    36	:: This is used by cgo. Default is "gfortran".
    37	
    38	@echo off
    39	
    40	:: Keep environment variables within this script
    41	:: unless invoked with --no-local.
    42	if x%1==x--no-local goto nolocal
    43	if x%2==x--no-local goto nolocal
    44	if x%3==x--no-local goto nolocal
    45	if x%4==x--no-local goto nolocal
    46	setlocal
    47	:nolocal
    48	
    49	set GOENV=off
    50	set GOBUILDFAIL=0
    51	set GOFLAGS=
    52	set GO111MODULE=
    53	
    54	if exist make.bat goto ok
    55	echo Must run make.bat from Go src directory.
    56	goto fail
    57	:ok
    58	
    59	:: Clean old generated file that will cause problems in the build.
    60	del /F ".\pkg\runtime\runtime_defs.go" 2>NUL
    61	
    62	:: Set GOROOT for build.
    63	cd ..
    64	set GOROOT=%CD%
    65	cd src
    66	set vflag=
    67	if x%1==x-v set vflag=-v
    68	if x%2==x-v set vflag=-v
    69	if x%3==x-v set vflag=-v
    70	if x%4==x-v set vflag=-v
    71	
    72	if not exist ..\bin\tool mkdir ..\bin\tool
    73	if "x%GOROOT_BOOTSTRAP%"=="x" set GOROOT_BOOTSTRAP=%HOMEDRIVE%%HOMEPATH%\Go1.4
    74	if not exist "%GOROOT_BOOTSTRAP%\bin\go.exe" goto bootstrapfail
    75	echo Building Go cmd/dist using %GOROOT_BOOTSTRAP%
    76	if x%vflag==x-v echo cmd/dist
    77	setlocal
    78	set GOROOT=%GOROOT_BOOTSTRAP%
    79	set GOOS=
    80	set GOARCH=
    81	set GOBIN=
    82	set GO111MODULE=off
    83	"%GOROOT_BOOTSTRAP%\bin\go.exe" build -o cmd\dist\dist.exe .\cmd\dist
    84	endlocal
    85	if errorlevel 1 goto fail
    86	.\cmd\dist\dist.exe env -w -p >env.bat
    87	if errorlevel 1 goto fail
    88	call env.bat
    89	del env.bat
    90	if x%vflag==x-v echo.
    91	
    92	if x%1==x--dist-tool goto copydist
    93	if x%2==x--dist-tool goto copydist
    94	if x%3==x--dist-tool goto copydist
    95	if x%4==x--dist-tool goto copydist
    96	
    97	set buildall=-a
    98	if x%1==x--no-clean set buildall=
    99	if x%2==x--no-clean set buildall=
   100	if x%3==x--no-clean set buildall=
   101	if x%4==x--no-clean set buildall=
   102	if x%1==x--no-banner set buildall=%buildall% --no-banner
   103	if x%2==x--no-banner set buildall=%buildall% --no-banner
   104	if x%3==x--no-banner set buildall=%buildall% --no-banner
   105	if x%4==x--no-banner set buildall=%buildall% --no-banner
   106	
   107	:: Run dist bootstrap to complete make.bash.
   108	:: Bootstrap installs a proper cmd/dist, built with the new toolchain.
   109	:: Throw ours, built with Go 1.4, away after bootstrap.
   110	.\cmd\dist\dist.exe bootstrap %vflag% %buildall%
   111	if errorlevel 1 goto fail
   112	del .\cmd\dist\dist.exe
   113	goto end
   114	
   115	:: DO NOT ADD ANY NEW CODE HERE.
   116	:: The bootstrap+del above are the final step of make.bat.
   117	:: If something must be added, add it to cmd/dist's cmdbootstrap,
   118	:: to avoid needing three copies in three different shell languages
   119	:: (make.bash, make.bat, make.rc).
   120	
   121	:copydist
   122	mkdir "%GOTOOLDIR%" 2>NUL
   123	copy cmd\dist\dist.exe "%GOTOOLDIR%\"
   124	goto end
   125	
   126	:bootstrapfail
   127	echo ERROR: Cannot find %GOROOT_BOOTSTRAP%\bin\go.exe
   128	echo Set GOROOT_BOOTSTRAP to a working Go tree ^>= Go 1.4.
   129	
   130	:fail
   131	set GOBUILDFAIL=1
   132	if x%GOBUILDEXIT%==x1 exit %GOBUILDFAIL%
   133	
   134	:end

View as plain text