From 712eca44d5121dcf62031753e066e3fb6dc66492 Mon Sep 17 00:00:00 2001 From: Vlad Vissoultchev Date: Mon, 14 Mar 2016 18:06:42 +0200 Subject: Revert spawnvp param cast and use `no-incompatible-pointer-types` in build-tcc.bat --- win32/build-tcc.bat | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'win32') diff --git a/win32/build-tcc.bat b/win32/build-tcc.bat index ec8d5ae..7713e69 100644 --- a/win32/build-tcc.bat +++ b/win32/build-tcc.bat @@ -10,14 +10,14 @@ echo>..\config.h #define TCC_VERSION "%VERSION%" @if _%1_==_x64_ shift /1 && goto x86_64 @set target=-DTCC_TARGET_PE -DTCC_TARGET_I386 -@set CC=gcc -Os -s -fno-strict-aliasing +@set CC=gcc -Os -s -fno-strict-aliasing -Wno-incompatible-pointer-types @if _%1_==_debug_ set CC=gcc -g -ggdb @set P=32 @goto tools :x86_64 @set target=-DTCC_TARGET_PE -DTCC_TARGET_X86_64 -@set CC=x86_64-w64-mingw32-gcc -Os -s -fno-strict-aliasing +@set CC=x86_64-w64-mingw32-gcc -Os -s -fno-strict-aliasing -Wno-incompatible-pointer-types @if _%1_==_debug_ set CC=x86_64-w64-mingw32-gcc -g -ggdb @set P=64 @goto tools -- cgit v1.3.1