forked from LunarG/VulkanTools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
update_external_sources.bat
543 lines (460 loc) · 16.3 KB
/
update_external_sources.bat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
@echo off
REM Update source for glslang, spirv-tools
REM Determine the appropriate CMake strings for the current version of Visual Studio
echo Determining VS version
python .\scripts\determine_vs_version.py > vsversion.tmp
set /p VS_VERSION=< vsversion.tmp
echo Detected Visual Studio Version as %VS_VERSION%
REM Cleanup the file we used to collect the VS version output since it's no longer needed.
del /Q /F vsversion.tmp
setlocal EnableDelayedExpansion
set errorCode=0
set BUILD_DIR=%~dp0
set BASE_DIR="%BUILD_DIR%external"
set REVISION_DIR="%BUILD_DIR%external_revisions"
set GLSLANG_DIR=%BASE_DIR%\glslang
set SPIRV_TOOLS_DIR=%BASE_DIR%\spirv-tools
set JSONCPP_DIR=%BASE_DIR%\jsoncpp
REM // ======== Parameter parsing ======== //
if "%1" == "" (
echo usage: update_external_sources.bat [options]
echo.
echo Available options:
echo --sync-glslang just pull glslang_revision
echo --sync-spirv-tools just pull spirv-tools_revision
echo --sync-jsoncpp just pull jsoncpp HEAD
echo --build-glslang pulls glslang_revision, configures CMake, builds Release and Debug
echo --build-spirv-tools pulls spirv-tools_revision, configures CMake, builds Release and Debug
echo --build-jsoncpp pulls jsoncpp HEAD, configures CMake, builds Release and Debug
echo --all sync and build glslang, spirv-tools, and jsoncpp
goto:finish
)
set sync-glslang=0
set sync-spirv-tools=0
set sync-jsoncpp=0
set build-glslang=0
set build-spirv-tools=0
set build-jsoncpp=0
set check-glslang-build-dependencies=0
:parameterLoop
if "%1"=="" goto:parameterContinue
if "%1" == "--sync-glslang" (
set sync-glslang=1
shift
goto:parameterLoop
)
if "%1" == "--sync-spirv-tools" (
set sync-spirv-tools=1
shift
goto:parameterLoop
)
if "%1" == "--sync-jsoncpp" (
set sync-jsoncpp=1
shift
goto:parameterLoop
)
if "%1" == "--build-glslang" (
set sync-glslang=1
set check-glslang-build-dependencies=1
set build-glslang=1
shift
goto:parameterLoop
)
if "%1" == "--build-spirv-tools" (
set sync-spirv-tools=1
REM glslang has the same needs as spirv-tools
set check-glslang-build-dependencies=1
set build-spirv-tools=1
shift
goto:parameterLoop
)
if "%1" == "--build-jsoncpp" (
set sync-jsoncpps=1
set build-jsoncpp=1
shift
goto:parameterLoop
)
if "%1" == "--all" (
set sync-glslang=1
set sync-spirv-tools=1
set sync-jsoncpp=1
set build-glslang=1
set build-spirv-tools=1
set build-jsoncpp=1
set check-glslang-build-dependencies=1
shift
goto:parameterLoop
)
echo Unrecognized options "%1"
goto:error
:parameterContinue
REM // ======== end Parameter parsing ======== //
REM // ======== Dependency checking ======== //
REM git is required for all paths
for %%X in (git.exe) do (set FOUND=%%~$PATH:X)
if not defined FOUND (
echo Dependency check failed:
echo git.exe not found
echo Git for Windows can be downloaded here: https://git-scm.com/download/win
echo Install and ensure git.exe makes it into your PATH
set errorCode=1
)
if %check-glslang-build-dependencies% equ 1 (
for %%X in (cmake.exe) do (set FOUND=%%~$PATH:X)
if not defined FOUND (
echo Dependency check failed:
echo cmake.exe not found
echo Get CNake 2.8 for Windows here: http://www.cmake.org/cmake/resources/software.html
echo Install and ensure each makes it into your PATH, default is "C:\Program Files (x86)\CMake\bin"
set errorCode=1
)
)
REM goto:main
REM // ======== end Dependency checking ======== //
:main
if %errorCode% neq 0 (goto:error)
REM Read the target versions from external file, which is shared with Linux script
if not exist %REVISION_DIR%\glslang_revision (
echo.
echo Missing glslang_revision file! Place it in %REVSION_DIR% with target version in it.
set errorCode=1
goto:error
)
if not exist %REVISION_DIR%\spirv-tools_revision (
echo.
echo Missing spirv-tools_revision file! Place it in %REVISION_DIR% with target version in it.
set errorCode=1
goto:error
)
if not exist %REVISION_DIR%\spirv-headers_revision (
echo.
echo Missing spirv-headers_revision file! Place it in %REVISION_DIR% with target version in it.
set errorCode=1
goto:error
)
if not exist %REVISION_DIR%\jsoncpp_revision (
echo.
echo Missing jsoncpp_revision file! Place it in %REVISION_DIR% with target version in it.
set errorCode=1
goto:error
)
set /p GLSLANG_REVISION= < %REVISION_DIR%\glslang_revision
set /p SPIRV_TOOLS_REVISION= < %REVISION_DIR%\spirv-tools_revision
set /p SPIRV_HEADERS_REVISION= < %REVISION_DIR%\spirv-headers_revision
set /p JSONCPP_REVISION= < %REVISION_DIR%\jsoncpp_revision
echo GLSLANG_REVISION=%GLSLANG_REVISION%
echo SPIRV_TOOLS_REVISION=%SPIRV_TOOLS_REVISION%
echo SPIRV_HEADERS_REVISION=%SPIRV_HEADERS_REVISION%
echo JSONCPP_REVISION=%JSONCPP_REVISION%
echo Creating and/or updating glslang, spirv-tools in %BASE_DIR%
if %sync-glslang% equ 1 (
if not exist %GLSLANG_DIR% (
call:create_glslang
)
if %errorCode% neq 0 (goto:error)
call:update_glslang
if %errorCode% neq 0 (goto:error)
)
if %sync-spirv-tools% equ 1 (
if %errorlevel% neq 0 (goto:error)
if not exist %SPIRV_TOOLS_DIR% (
call:create_spirv-tools
)
if %errorCode% neq 0 (goto:error)
call:update_spirv-tools
if %errorCode% neq 0 (goto:error)
)
if %sync-jsoncpp% equ 1 (
if exist %JSONCPP_DIR% (
rd /S /Q %JSONCPP_DIR%
)
if %errorlevel% neq 0 (goto:error)
if not exist %JSONCPP_DIR% (
call:create_jsoncpp
)
if %errorCode% neq 0 (goto:error)
call:update_jsoncpp
if %errorCode% neq 0 (goto:error)
)
if %build-glslang% equ 1 (
call:build_glslang
if %errorCode% neq 0 (goto:error)
)
if %build-spirv-tools% equ 1 (
call:build_spirv-tools
if %errorCode% neq 0 (goto:error)
)
if %build-jsoncpp% equ 1 (
call:build_jsoncpp
if %errorCode% neq 0 (goto:error)
)
echo.
echo Exiting
goto:finish
:error
echo.
echo Halting due to error
set errorCode=1
goto:finish
:finish
if not "%cd%\" == "%BUILD_DIR%" ( cd %BUILD_DIR% )
exit /b %errorCode%
REM // ======== Functions ======== //
:create_glslang
echo.
echo Creating local glslang repository %GLSLANG_DIR%)
mkdir %GLSLANG_DIR%
cd %GLSLANG_DIR%
git clone https://github.com/KhronosGroup/glslang.git .
git checkout %GLSLANG_REVISION%
if not exist %GLSLANG_DIR%\SPIRV (
echo glslang source download failed!
set errorCode=1
)
goto:eof
:update_glslang
echo.
echo Updating %GLSLANG_DIR%
cd %GLSLANG_DIR%
git fetch --all
git checkout %GLSLANG_REVISION%
goto:eof
:create_spirv-tools
echo.
echo Creating local spirv-tools repository %SPIRV_TOOLS_DIR%)
mkdir %SPIRV_TOOLS_DIR%
cd %SPIRV_TOOLS_DIR%
git clone https://github.com/KhronosGroup/SPIRV-Tools.git .
git checkout %SPIRV_TOOLS_REVISION%
if not exist %SPIRV_TOOLS_DIR%\source (
echo spirv-tools source download failed!
set errorCode=1
)
mkdir %SPIRV_TOOLS_DIR%\external
mkdir %SPIRV_TOOLS_DIR%\external\spirv-headers
cd %SPIRV_TOOLS_DIR%\external\spirv-headers
git clone https://github.com/KhronosGroup/SPIRV-HEADERS.git .
git checkout %SPIRV_HEADERS_REVISION%
if not exist %SPIRV_TOOLS_DIR%\external\spirv-headers\README.md (
echo spirv-headers download failed!
set errorCode=1
)
goto:eof
:update_spirv-tools
echo.
echo Updating %SPIRV_TOOLS_DIR%
cd %SPIRV_TOOLS_DIR%
git fetch --all
git checkout %SPIRV_TOOLS_REVISION%
cd %SPIRV_TOOLS_DIR%\external\spirv-headers
git fetch --all
git checkout %SPIRV_HEADERS_REVISION%
goto:eof
:build_glslang
echo.
echo Building %GLSLANG_DIR%
cd %GLSLANG_DIR%
if not exist build32 (
mkdir build32
)
if not exist build (
mkdir build
)
echo Making 32-bit glslang
echo *************************
set GLSLANG_BUILD_DIR=%GLSLANG_DIR%\build32
cd %GLSLANG_BUILD_DIR%
echo Generating 32-bit Glslang CMake files for Visual Studio %VS_VERSION% -DCMAKE_INSTALL_PREFIX=install ..
cmake -G "Visual Studio %VS_VERSION%" -DCMAKE_INSTALL_PREFIX=install ..
echo Building 32-bit Glslang: MSBuild INSTALL.vcxproj /p:Platform=x86 /p:Configuration=Debug
msbuild INSTALL.vcxproj /p:Platform=x86 /p:Configuration=Debug /verbosity:quiet
REM Check for existence of one lib, even though we should check for all results
if not exist %GLSLANG_BUILD_DIR%\glslang\Debug\glslangd.lib (
echo.
echo glslang 32-bit Debug build failed!
set errorCode=1
)
echo Building Glslang: MSBuild INSTALL.vcxproj /p:Platform=x86 /p:Configuration=Release
msbuild INSTALL.vcxproj /p:Platform=x86 /p:Configuration=Release /verbosity:quiet
REM Check for existence of one lib, even though we should check for all results
if not exist %GLSLANG_BUILD_DIR%\glslang\Release\glslang.lib (
echo.
echo glslang 32-bit Release build failed!
set errorCode=1
)
cd ..
echo Making 64-bit glslang
echo *************************
set GLSLANG_BUILD_DIR=%GLSLANG_DIR%\build
cd %GLSLANG_BUILD_DIR%
echo Generating 64-bit Glslang CMake files for Visual Studio %VS_VERSION% -DCMAKE_INSTALL_PREFIX=install ..
cmake -G "Visual Studio %VS_VERSION% Win64" -DCMAKE_INSTALL_PREFIX=install ..
echo Building 64-bit Glslang: MSBuild INSTALL.vcxproj /p:Platform=x64 /p:Configuration=Debug
msbuild INSTALL.vcxproj /p:Platform=x64 /p:Configuration=Debug /verbosity:quiet
REM Check for existence of one lib, even though we should check for all results
if not exist %GLSLANG_BUILD_DIR%\glslang\Debug\glslangd.lib (
echo.
echo glslang 64-bit Debug build failed!
set errorCode=1
)
echo Building Glslang: MSBuild INSTALL.vcxproj /p:Platform=x64 /p:Configuration=Release
msbuild INSTALL.vcxproj /p:Platform=x64 /p:Configuration=Release /verbosity:quiet
REM Check for existence of one lib, even though we should check for all results
if not exist %GLSLANG_BUILD_DIR%\glslang\Release\glslang.lib (
echo.
echo glslang 64-bit Release build failed!
set errorCode=1
)
goto:eof
:build_spirv-tools
echo.
echo Building %SPIRV_TOOLS_DIR%
cd %SPIRV_TOOLS_DIR%
REM Cleanup any old directories lying around.
if not exist build32 (
mkdir build32
)
if not exist build (
mkdir build
)
echo Making 32-bit spirv-tools
echo *************************
set SPIRV_TOOLS_BUILD_DIR=%SPIRV_TOOLS_DIR%\build32
cd %SPIRV_TOOLS_BUILD_DIR%
echo Generating 32-bit spirv-tools CMake files for Visual Studio %VS_VERSION% ..
cmake -G "Visual Studio %VS_VERSION%" ..
echo Building 32-bit spirv-tools: MSBuild ALL_BUILD.vcxproj /p:Platform=x86 /p:Configuration=Debug
msbuild ALL_BUILD.vcxproj /p:Platform=x86 /p:Configuration=Debug /verbosity:quiet
REM Check for existence of one lib, even though we should check for all results
if not exist %SPIRV_TOOLS_BUILD_DIR%\source\Debug\SPIRV-Tools.lib (
echo.
echo spirv-tools 32-bit Debug build failed!
set errorCode=1
)
echo Building 32-bit spirv-tools: MSBuild ALL_BUILD.vcxproj /p:Platform=x86 /p:Configuration=Release
msbuild ALL_BUILD.vcxproj /p:Platform=x86 /p:Configuration=Release /verbosity:quiet
REM Check for existence of one lib, even though we should check for all results
if not exist %SPIRV_TOOLS_BUILD_DIR%\source\Release\SPIRV-Tools.lib (
echo.
echo spirv-tools 32-bit Release build failed!
set errorCode=1
)
cd ..
echo Making 64-bit spirv-tools
echo *************************
set SPIRV_TOOLS_BUILD_DIR=%SPIRV_TOOLS_DIR%\build
cd %SPIRV_TOOLS_BUILD_DIR%
echo Generating 64-bit spirv-tools CMake files for Visual Studio %VS_VERSION% ..
cmake -G "Visual Studio %VS_VERSION% Win64" ..
echo Building 64-bit spirv-tools: MSBuild ALL_BUILD.vcxproj /p:Platform=x64 /p:Configuration=Debug
msbuild ALL_BUILD.vcxproj /p:Platform=x64 /p:Configuration=Debug /verbosity:quiet
REM Check for existence of one lib, even though we should check for all results
if not exist %SPIRV_TOOLS_BUILD_DIR%\source\Debug\SPIRV-Tools.lib (
echo.
echo spirv-tools 64-bit Debug build failed!
set errorCode=1
)
echo Building 64-bit spirv-tools: MSBuild ALL_BUILD.vcxproj /p:Platform=x64 /p:Configuration=Release
msbuild ALL_BUILD.vcxproj /p:Platform=x64 /p:Configuration=Release /verbosity:quiet
REM Check for existence of one lib, even though we should check for all results
if not exist %SPIRV_TOOLS_BUILD_DIR%\source\Release\SPIRV-Tools.lib (
echo.
echo spirv-tools 64-bit Release build failed!
set errorCode=1
)
goto:eof
:create_jsoncpp
echo.
echo Creating local jsoncpp repository %JSONCPP_DIR%)
mkdir %JSONCPP_DIR%
cd %JSONCPP_DIR%
git clone https://github.com/open-source-parsers/jsoncpp.git .
git checkout %JSONCPP_REVISION%
if not exist %JSONCPP_DIR%\include\json\json.h (
echo jsoncpp source download failed!
set errorCode=1
)
goto:eof
:update_jsoncpp
echo.
echo Updating %JSONCPP_DIR%
cd %JSONCPP_DIR%
git fetch --all
git checkout %JSONCPP_REVISION%
goto:eof
:build_jsoncpp
echo.
echo Building %JSONCPP_DIR%
cd %JSONCPP_DIR%
python amalgamate.py
if not exist %JSONCPP_DIR%\dist\json\json.h (
echo.
echo JsonCPP Amalgamation failed to generate %JSONCPP_DIR%\dist\json\json.h
set errorCode=1
)
REM REM Cleanup any old directories lying around.
REM if exist build32 (
REM rmdir /s /q build32
REM )
REM if exist build (
REM rmdir /s /q build
REM )
REM
REM echo Making 32-bit jsoncpp
REM echo *************************
REM mkdir build32
REM set JSONCPP_BUILD_DIR=%JSONCPP_DIR%\build32
REM cd %JSONCPP_BUILD_DIR%
REM
REM echo Generating 32-bit JsonCPP CMake files for Visual Studio %VS_VERSION%
REM cmake -G "Visual Studio %VS_VERSION%" .. -DMSVC_RUNTIME=static
REM
REM echo Building 32-bit JsonCPP: MSBuild ALL_BUILD.vcxproj /p:Platform=x86 /p:Configuration=Debug
REM msbuild ALL_BUILD.vcxproj /p:Platform=x86 /p:Configuration=Debug /verbosity:quiet
REM
REM REM Check for existence of one lib, even though we should check for all results
REM if not exist %JSONCPP_BUILD_DIR%\src\lib_json\Debug\jsoncpp.lib (
REM echo.
REM echo jsoncpp 32-bit Debug build failed!
REM set errorCode=1
REM )
REM echo B Building 32-bit JsonCPP: MSBuild ALL_BUILD.vcxproj /p:Platform=x86 /p:Configuration=Release
REM msbuild ALL_BUILD.vcxproj /p:Platform=x86 /p:Configuration=Release /verbosity:quiet
REM
REM REM Check for existence of one lib, even though we should check for all results
REM if not exist %JSONCPP_BUILD_DIR%\src\lib_json\Release\jsoncpp.lib (
REM echo.
REM echo jsoncpp 32-bit Release build failed!
REM set errorCode=1
REM )
REM
REM cd ..
REM
REM echo Making 64-bit jsoncpp
REM echo *************************
REM mkdir build
REM set JSONCPP_BUILD_DIR=%JSONCPP_DIR%\build
REM cd %JSONCPP_BUILD_DIR%
REM
REM echo Generating 64-bit JsonCPP CMake files for Visual Studio %VS_VERSION%
REM cmake -G "Visual Studio %VS_VERSION% Win64" .. -DMSVC_RUNTIME=static
REM
REM echo Building 64-bit JsonCPP: MSBuild ALL_BUILD.vcxproj /p:Platform=x64 /p:Configuration=Debug
REM msbuild ALL_BUILD.vcxproj /p:Platform=x64 /p:Configuration=Debug /verbosity:quiet
REM
REM REM Check for existence of one lib, even though we should check for all results
REM if not exist %JSONCPP_BUILD_DIR%\src\lib_json\Debug\jsoncpp.lib (
REM echo.
REM echo jsoncpp 64-bit Debug build failed!
REM set errorCode=1
REM )
REM echo Building 64-bit JsonCPP: MSBuild ALL_BUILD.vcxproj /p:Platform=x64 /p:Configuration=Release
REM msbuild ALL_BUILD.vcxproj /p:Platform=x64 /p:Configuration=Release /verbosity:quiet
REM
REM REM Check for existence of one lib, even though we should check for all results
REM if not exist %JSONCPP_BUILD_DIR%\src\lib_json\Release\jsoncpp.lib (
REM echo.
REM echo jsoncpp 64-bit Release build failed!
REM set errorCode=1
REM )
goto:eof