From 0f90b07e1a6686d2dc6efbe79436e0c69ea5cadf Mon Sep 17 00:00:00 2001 From: stephena Date: Sat, 17 Dec 2005 01:26:58 +0000 Subject: [PATCH] Now that the 'reinterpret_cast' operator has been removed from Stella, we can also remove RTTI support. This may result in a slightly smaller binary. git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@912 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba --- stella/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stella/Makefile b/stella/Makefile index 49d19942c..08de9da26 100644 --- a/stella/Makefile +++ b/stella/Makefile @@ -13,7 +13,7 @@ ## See the file "license" for information on usage and redistribution of ## this file, and for a DISCLAIMER OF ALL WARRANTIES. ## -## $Id: Makefile,v 1.13 2005-10-25 21:21:15 stephena Exp $ +## $Id: Makefile,v 1.14 2005-12-17 01:26:58 stephena Exp $ ## ## Based on code from ScummVM - Scumm Interpreter ## Copyright (C) 2002-2004 The ScummVM project @@ -47,7 +47,7 @@ ifdef CXXFLAGS else CXXFLAGS:= -O2 endif -CXXFLAGS+= -Wall -Wno-multichar -Wunused -fomit-frame-pointer +CXXFLAGS+= -Wall -Wno-multichar -Wunused -fomit-frame-pointer -fno-rtti # Even more warnings... #CXXFLAGS+= -pedantic -Wpointer-arith -Wcast-qual -Wconversion #CXXFLAGS+= -Wshadow -Wimplicit -Wundef -Wnon-virtual-dtor