diff options
author | Johannes Schickel | 2013-10-23 23:45:29 +0200 |
---|---|---|
committer | Johannes Schickel | 2013-10-23 23:45:29 +0200 |
commit | 2df57c17e51d6bef5331297599b4a93411d41fec (patch) | |
tree | 6999b816451e14cd90728010f3d2cf1ebe006318 /Makefile | |
parent | 092d36f39204df71038a1567c0d4d55bf854b523 (diff) | |
download | scummvm-rg350-2df57c17e51d6bef5331297599b4a93411d41fec.tar.gz scummvm-rg350-2df57c17e51d6bef5331297599b4a93411d41fec.tar.bz2 scummvm-rg350-2df57c17e51d6bef5331297599b4a93411d41fec.zip |
BUILD: Enable RTTI again.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -33,8 +33,9 @@ ifeq "$(HAVE_GCC)" "1" #CXXFLAGS+= -Wmissing-format-attribute ifneq "$(BACKEND)" "tizen" - # Disable RTTI and exceptions. These settings cause tizen apps to crash - CXXFLAGS+= -fno-rtti -fno-exceptions + # Disable exceptions. This setting causes tizen apps to crash + # TODO: Does this still apply after enabling RTTI again? + CXXFLAGS+= -fno-exceptions endif ifneq "$(HAVE_CLANG)" "1" |