From 07ed5b612cd419a626586f8e98cc5cbf77b28fd2 Mon Sep 17 00:00:00 2001 From: Greg Fischer Date: Fri, 2 Oct 2015 13:05:27 -0600 Subject: update_external_sources: get glslang from gitlab This is the new way to get the tools for private SPIR-V rev32 --- update_external_sources.bat | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/update_external_sources.bat b/update_external_sources.bat index e21f4826..2586875f 100755 --- a/update_external_sources.bat +++ b/update_external_sources.bat @@ -256,7 +256,9 @@ REM // ======== Functions ======== // echo Creating local glslang repository %GLSLANG_DIR%) mkdir %GLSLANG_DIR% cd %GLSLANG_DIR% - git clone https://github.com/KhronosGroup/glslang.git . + git clone git@gitlab.khronos.org:GLSL/glslang.git . + git branch --track Rev32 origin/Rev32 + git checkout Rev32 git checkout %GLSLANG_REVISION% if not exist %GLSLANG_DIR%\SPIRV ( echo glslang source download failed! @@ -268,9 +270,8 @@ goto:eof echo. echo Updating %GLSLANG_DIR% cd %GLSLANG_DIR% - svn.exe checkout --force https://cvs.khronos.org/svn/repos/SPIRV/trunk/glslang/ . - svn.exe update -r %GLSLANG_REVISION_R32% - svn.exe revert -R . + git checkout Rev32 + git checkout %GLSLANG_REVISION% goto:eof :create_LunarGLASS -- cgit v1.2.3