2017-11-26 15:37:55 -05:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
#
|
2018-01-31 16:57:59 -05:00
|
|
|
# Copyright (c) 2016-2018 The Brenwill Workshop Ltd.
|
2017-11-26 15:37:55 -05:00
|
|
|
#
|
|
|
|
# getLatestSPIRVTools - Updates to the latest version of SPIRV-Tools submodule.
|
|
|
|
#
|
|
|
|
# macOS usage: ./getLatestSPIRVTools
|
|
|
|
|
|
|
|
rm -rf SPIRV-Headers
|
|
|
|
git clone https://github.com/KhronosGroup/SPIRV-Headers.git
|
|
|
|
|
|
|
|
rm -rf SPIRV-Tools
|
|
|
|
git clone https://github.com/KhronosGroup/SPIRV-Tools.git
|
|
|
|
|
|
|
|
./makeSPIRVTools
|