From 52d194a1e6878a2a859bfa5a250e53a1e57be048 Mon Sep 17 00:00:00 2001 From: seyko Date: Wed, 13 Apr 2016 06:29:24 +0300 Subject: VS2015 solution and project files From: Vlad Vissoultchev Date: Mon, 11 Apr 2016 01:32:28 +0300 Subject: Add VS2015 solution and project files to `win32/vs2015` directory This allows release/debug builds for both x86 and x64 targets. Some warnings had to be suppressed. Output libtcc.dll and tcc.exe are copied to parent `win32` directory w/ a post-build action. --- win32/build-tcc.bat | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'win32/build-tcc.bat') diff --git a/win32/build-tcc.bat b/win32/build-tcc.bat index 7713e69..e5caf3b 100644 --- a/win32/build-tcc.bat +++ b/win32/build-tcc.bat @@ -63,10 +63,11 @@ tiny_libmaker lib/libtcc1.a libtcc1.o alloca86_64.o crt1.o wincrt1.o dllcrt1.o d del *.o :makedoc -where makeinfo > nul 2>&1 || goto :skip_makedoc +for /f "delims=" %%i in ('where makeinfo') do set minfo=perl "%%~i" +if "%minfo%"=="" goto :skip_makedoc echo>..\config.texi @set VERSION %VERSION% if not exist doc md doc -makeinfo --html --no-split -o doc\tcc-doc.html ../tcc-doc.texi +%minfo% --html --no-split -o doc\tcc-doc.html ../tcc-doc.texi copy tcc-win32.txt doc copy ..\tests\libtcc_test.c examples :skip_makedoc -- cgit v1.3.1