"...text-generation-inference.git" did not exist on "4e821c003a7cb055a358cf142dbf01a2f4c1916f"
Commit 758068da authored by Davis King's avatar Davis King
Browse files

made the build script compile in newer versions of visual studio before older ones.

parent 91150823
...@@ -16,6 +16,21 @@ cd .. ...@@ -16,6 +16,21 @@ cd ..
echo testing vc2015 >> test_log.txt
rm -rf build_vc2015_64
mkdir build_vc2015_64
cd build_vc2015_64
cmake -G "Visual Studio 14 2015 Win64" ..
cmake --build . --config Release || exit /B
ping 127.0.0.1 -n 5 -w 1000 > null
cmake --build . --config Debug || exit /B
ping 127.0.0.1 -n 5 -w 1000 > null
cd Release
dtest --runall -d || exit /B
cd ..
cd ..
...@@ -50,21 +65,6 @@ cd .. ...@@ -50,21 +65,6 @@ cd ..
cd .. cd ..
echo testing vc2015 >> test_log.txt
rm -rf build_vc2015_64
mkdir build_vc2015_64
cd build_vc2015_64
cmake -G "Visual Studio 14 2015 Win64" ..
cmake --build . --config Release || exit /B
ping 127.0.0.1 -n 5 -w 1000 > null
cmake --build . --config Debug || exit /B
ping 127.0.0.1 -n 5 -w 1000 > null
cd Release
dtest --runall -d || exit /B
cd ..
cd ..
del null del null
type test_log.txt type test_log.txt
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment