Win32 build script handles x64 and debug params

This commit is contained in:
Vlad Vissoultchev 2016-03-13 04:19:32 +02:00
parent 8e4d64be2f
commit 2dc7161453

View File

@ -1,3 +1,4 @@
@echo off
@rem ---------------------------------------------------- @rem ----------------------------------------------------
@rem batch file to build tcc using mingw gcc @rem batch file to build tcc using mingw gcc
@rem ---------------------------------------------------- @rem ----------------------------------------------------
@ -5,28 +6,30 @@
@set /p VERSION= < ..\VERSION @set /p VERSION= < ..\VERSION
echo>..\config.h #define TCC_VERSION "%VERSION%" echo>..\config.h #define TCC_VERSION "%VERSION%"
@rem @if _%PROCESSOR_ARCHITEW6432%_==_AMD64_ goto x86_64 @if _%1_==_AMD64_ shift /1 && goto x86_64
@if _%PROCESSOR_ARCHITECTURE%_==_AMD64_ goto x86_64 @if _%1_==_x64_ shift /1 && goto x86_64
@set target=-DTCC_TARGET_PE -DTCC_TARGET_I386 @set target=-DTCC_TARGET_PE -DTCC_TARGET_I386
@set CC=gcc -Os -s -fno-strict-aliasing @set CC=gcc -Os -s -fno-strict-aliasing
@if _%1_==_debug_ set CC=gcc -g -ggdb
@set P=32 @set P=32
@goto tools @goto tools
:x86_64 :x86_64
@set target=-DTCC_TARGET_PE -DTCC_TARGET_X86_64 @set target=-DTCC_TARGET_PE -DTCC_TARGET_X86_64
@rem mingw 64 has an ICE with -Os @set CC=x86_64-w64-mingw32-gcc -Os -s -fno-strict-aliasing
@set CC=x86_64-pc-mingw32-gcc -O0 -s -fno-strict-aliasing @if _%1_==_debug_ set CC=x86_64-w64-mingw32-gcc -g -ggdb
@set P=64 @set P=64
@goto tools @goto tools
:tools :tools
echo will use %CC% %target%
%CC% %target% tools/tiny_impdef.c -o tiny_impdef.exe %CC% %target% tools/tiny_impdef.c -o tiny_impdef.exe
%CC% %target% tools/tiny_libmaker.c -o tiny_libmaker.exe %CC% %target% tools/tiny_libmaker.c -o tiny_libmaker.exe
:libtcc :libtcc
if not exist libtcc mkdir libtcc if not exist libtcc mkdir libtcc
copy ..\libtcc.h libtcc\libtcc.h copy ..\libtcc.h libtcc\libtcc.h > nul
%CC% %target% -shared -DLIBTCC_AS_DLL -DONE_SOURCE ../libtcc.c -o libtcc.dll -Wl,-out-implib,libtcc/libtcc.a %CC% %target% -shared -DLIBTCC_AS_DLL -DONE_SOURCE ../libtcc.c -o libtcc.dll -Wl,-out-implib,libtcc/libtcc.a
tiny_impdef libtcc.dll -o libtcc/libtcc.def tiny_impdef libtcc.dll -o libtcc/libtcc.def
@ -34,7 +37,7 @@ tiny_impdef libtcc.dll -o libtcc/libtcc.def
%CC% %target% ../tcc.c -o tcc.exe -ltcc -Llibtcc %CC% %target% ../tcc.c -o tcc.exe -ltcc -Llibtcc
:copy_std_includes :copy_std_includes
copy ..\include\*.h include copy ..\include\*.h include > nul
:libtcc1.a :libtcc1.a
.\tcc %target% -c ../lib/libtcc1.c .\tcc %target% -c ../lib/libtcc1.c
@ -60,8 +63,10 @@ tiny_libmaker lib/libtcc1.a libtcc1.o alloca86_64.o crt1.o wincrt1.o dllcrt1.o d
del *.o del *.o
:makedoc :makedoc
where makeinfo > nul 2>&1 || goto :skip_makedoc
echo>..\config.texi @set VERSION %VERSION% echo>..\config.texi @set VERSION %VERSION%
if not exist doc md doc if not exist doc md doc
makeinfo --html --no-split -o doc\tcc-doc.html ../tcc-doc.texi makeinfo --html --no-split -o doc\tcc-doc.html ../tcc-doc.texi
copy tcc-win32.txt doc copy tcc-win32.txt doc
copy ..\tests\libtcc_test.c examples copy ..\tests\libtcc_test.c examples
:skip_makedoc