Changed syntax of test for -fvtable-thunks so it works.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@17077 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
2002-09-08 10:48:46 +00:00
parent eaeeb91eb6
commit 9aacdd48fb

View File

@@ -63,7 +63,11 @@ endif
ifeq ($(MINGW32),1)
ifneq "$(_GCC295)$(_GCC3)" ""
CC = gcc --pipe $(if $(_GCC3), , -fvtable-thunks)
ifeq ($(_GCC3),1)
CC = gcc --pipe
else
CC = gcc --pipe -fvtable-thunks
endif
else
CC = gcc
endif