all repos — mgba @ 07feb10f6dd53efc5fe666c6232d4c83a52e09eb

mGBA Game Boy Advance Emulator

All: Enable link-time optimization
Jeffrey Pfau jeffrey@endrift.com
Fri, 20 Feb 2015 23:09:11 -0800
commit

07feb10f6dd53efc5fe666c6232d4c83a52e09eb

parent

1994977c8f8da12691b8df7f3078ab0d3ba980ef

2 files changed, 2 insertions(+), 0 deletions(-)

jump to
M CHANGESCHANGES

@@ -60,6 +60,7 @@ - Debugger: Make I/O register names be addresses instead of values

- Debugger: Rename read/write commands - Qt: Optimize logo drawing - Qt: Move frame upload back onto main thread + - All: Enable link-time optimization 0.1.1: (2015-01-24) Bugfixes:
M CMakeLists.txtCMakeLists.txt

@@ -2,6 +2,7 @@ cmake_minimum_required(VERSION 2.6)

project(mGBA C) set(BINARY_NAME mgba CACHE INTERNAL "Name of output binaries") set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -Wextra -std=gnu99") +set(CMAKE_C_FLAGS_RELEASE "${CMAKE_C_FLAGS_RELEASE} -flto") set(USE_CLI_DEBUGGER ON CACHE BOOL "Whether or not to enable the CLI-mode ARM debugger") set(USE_GDB_STUB ON CACHE BOOL "Whether or not to enable the GDB stub ARM debugger") set(USE_FFMPEG ON CACHE BOOL "Whether or not to enable FFmpeg support")