1:: Copyright (c) 2011 The Native Client Authors. All rights reserved.
2:: Use of this source code is governed by a BSD-style license that can be
3:: found in the LICENSE file.
4
5@echo off
6
7:: gclient does not work when called from cygwin - python versions conflict.
8
9echo @@@BUILD_STEP gclient_runhooks@@@
10call gclient runhooks --force
11rmdir /s /q %~dp0..\tools\toolchain
12
13setlocal
14call "%~dp0msvs_env.bat" 64
15call "%~dp0cygwin_env.bat"
16set CYGWIN=nodosfilewarning %CYGWIN%
17call "%~dp0mingw_env.bat"
18
19bash buildbot/buildbot_windows-glibc-makefile.sh
20if errorlevel 1 exit 1
21endlocal
22
23:: Run tests
24
25set INSIDE_TOOLCHAIN=1
26python buildbot\buildbot_standard.py --scons-args=no_gdb_tests=1 opt 64 glibc
27
28