16 lines
374 B
Plaintext
16 lines
374 B
Plaintext
|
#!/usr/bin/env bash
|
||
|
#
|
||
|
# Copyright (c) 2016-2017 The Brenwill Workshop Ltd.
|
||
|
#
|
||
|
# 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
|