flavour-opt.mk 377 B

123456789101112131415
  1. # Generic optimisation flavour:
  2. # does not target any specific CPU.
  3. # Optimisation flags.
  4. CXXFLAGS+=-O3 -DNDEBUG -ffast-math
  5. # openMSX crashes when the win32 version is built with -fomit-frame-pointer
  6. # TODO: investigate and recheck when new compiler is used.
  7. ifneq ($(OPENMSX_TARGET_OS),mingw32)
  8. CXXFLAGS+=-fomit-frame-pointer
  9. endif
  10. # Strip executable?
  11. OPENMSX_STRIP:=true