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