Lines Matching refs:echo
1 @echo off
5 echo.
6 echo Before running prepare_libffi.bat
7 echo LIBFFI_SOURCE environment variable must be set to the location of
8 echo of python-source-deps clone of libffi branch
9 echo VCVARSALL must be set to location of vcvarsall.bat
10 echo cygwin must be installed (see below)
11 echo SH environment variable must be set to the location of sh.exe
12 echo.
13 echo Tested with cygwin-x86 from https://www.cygwin.com/install.html
14 echo Select http://mirrors.kernel.org as the download site
15 echo Include the following cygwin packages in cygwin configuration:
16 echo make, autoconf, automake, libtool, dejagnu
17 echo.
18 echo NOTE: dejagnu is only required for running tests.
19 echo set LIBFFI_TEST=1 to run tests (optional)
20 echo.
21 echo Based on https://github.com/libffi/libffi/blob/master/.appveyor.yml
22 echo.
23 echo.
24 echo.Available flags:
25 echo. -x64 enable x64 build
26 echo. -x86 enable x86 build
27 echo. -arm32 enable arm32 build
28 echo. -arm64 enable arm64 build
29 echo. -? this help
30 echo. --install-cygwin install cygwin to c:\cygwin
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
88 set GET_MSVCC=%SH% -lc "cd $OLDPWD; export MSVCC=`/usr/bin/find $PWD -name msvcc.sh`; echo ${MSVCC};"
91 echo.
92 echo VCVARSALL : %VCVARSALL%
93 echo SH : %SH%
94 echo LIBFFI_SOURCE: %LIBFFI_SOURCE%
95 echo MSVCC : %MSVCC%
96 echo.
131 if NOT DEFINED VCVARS_PLATFORM echo ERROR bad VCVARS_PLATFORM&&exit /b 123
161 echo get VS build environment
164 echo clean %_LIBFFI_OUT%
167 echo ================================================================
168 echo Configure the build to generate fficonfig.h and ffi.h
169 echo ================================================================
173 echo ================================================================
174 echo Building libffi
175 echo ================================================================
181 echo "Running tests..."
184 echo "Not running tests"
188 echo copying files to %_LIBFFI_OUT%