Lines Matching refs:goto
2 goto :Run
45 if "%1"=="" goto :CheckOptsDone
46 if /I "%1"=="-x64" (set BUILD_X64=1) & shift & goto :CheckOpts
47 if /I "%1"=="-x86" (set BUILD_X86=1) & shift & goto :CheckOpts
48 if /I "%1"=="-win32" (set BUILD_X86=1) & shift & goto :CheckOpts
49 if /I "%1"=="-arm32" (set BUILD_ARM32=1) & shift & goto :CheckOpts
50 if /I "%1"=="-arm64" (set BUILD_ARM64=1) & shift & goto :CheckOpts
51 if /I "%1"=="-pdb" (set BUILD_PDB=-g) & shift & goto :CheckOpts
52 if /I "%1"=="-noopt" (set BUILD_NOOPT=CFLAGS='-Od -warn all') & shift & goto :CheckOpts
53 if /I "%1"=="-license" (set COPY_LICENSE=1) & shift & goto :CheckOpts
54 if /I "%1"=="-?" goto :Usage
55 if /I "%1"=="--install-cygwin" (set INSTALL_CYGWIN=1) & shift & goto :CheckOpts
56 goto :Usage
78 if NOT DEFINED LIBFFI_SOURCE echo.&&echo ERROR LIBFFI_SOURCE environment variable not set && goto :Usage
79 if NOT DEFINED SH echo ERROR SH environment variable not set && goto :Usage
81 if not exist %SH% echo ERROR %SH% does not exist && goto :Usage
82 if not exist %LIBFFI_SOURCE% echo ERROR %LIBFFI_SOURCE% does not exist && goto :Usage