[Scummvm-cvs-logs] scummvm master -> 9fa5ac35bf177abd1fe40561e12400a6c8ec045a
lordhoto
lordhoto at gmail.com
Thu Feb 7 15:17:33 CET 2013
This automated email contains information about 3 new commits which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
3a7627812d CONFIGURE: Never enable release_build by default.
0c5bcc3be8 CONFIGURE: Use -O3 for OpenPandora when optimizations are requested.
9fa5ac35bf Merge pull request #304 from lordhoto/configure-no-release-default
Commit: 3a7627812d9ce50408ec4eab2381e8072c733bf1
https://github.com/scummvm/scummvm/commit/3a7627812d9ce50408ec4eab2381e8072c733bf1
Author: Johannes Schickel (lordhoto at scummvm.org)
Date: 2013-01-26T06:27:34-08:00
Commit Message:
CONFIGURE: Never enable release_build by default.
This changes the default for Caanoo, GP2x, GP2xWiz, OpenPandora and PS2.
For those now we only disable debug symbols and enable optimizations by
default.
Changed paths:
configure
diff --git a/configure b/configure
index 91364eb..f23d0ad 100755
--- a/configure
+++ b/configure
@@ -1425,15 +1425,10 @@ fi
case $_host in
caanoo | gp2x | gp2xwiz | openpandora | ps2)
if test "$_debug_build" = auto; then
- # If you want to debug one of these platforms, use '--disable-release --enable-debug'
+ # If you want to debug one of these platforms, use '--disable-optimizations --enable-debug'
_debug_build=no
fi
- if test "$_release_build" = auto; then
- # Enable release build by default.
- _release_build=yes
- fi
-
if test "$_optimizations" = auto; then
# Enable optimizations by default.
_optimizations=yes
Commit: 0c5bcc3be8dcc822fae50ac41417def73f159a8c
https://github.com/scummvm/scummvm/commit/0c5bcc3be8dcc822fae50ac41417def73f159a8c
Author: Johannes Schickel (lordhoto at scummvm.org)
Date: 2013-01-30T16:26:00-08:00
Commit Message:
CONFIGURE: Use -O3 for OpenPandora when optimizations are requested.
Formerly -O3 was only used for release builds.
Changed paths:
configure
diff --git a/configure b/configure
index f23d0ad..fd0f1dd 100755
--- a/configure
+++ b/configure
@@ -2548,10 +2548,13 @@ if test -n "$_host"; then
DEFINES="$DEFINES -DREDUCE_MEMORY_USAGE"
if test "$_release_build" = no; then
DEFINES="$DEFINES -DOP_DEBUG"
- else
- # Use -O3 on the OpenPandora for non-debug builds.
+ fi
+
+ # Use -O3 on the OpenPandora for optimized builds.
+ if test "$_optimizations" = yes; then
_optimization_level=-O3
fi
+
define_in_config_if_yes yes 'USE_ARM_NEON_ASPECT_CORRECTOR'
CXXFLAGS="$CXXFLAGS -march=armv7-a"
CXXFLAGS="$CXXFLAGS -mtune=cortex-a8"
Commit: 9fa5ac35bf177abd1fe40561e12400a6c8ec045a
https://github.com/scummvm/scummvm/commit/9fa5ac35bf177abd1fe40561e12400a6c8ec045a
Author: Johannes Schickel (lordhoto at gmail.com)
Date: 2013-02-07T06:16:56-08:00
Commit Message:
Merge pull request #304 from lordhoto/configure-no-release-default
CONFIGURE: Never enable release_build by default.
Changed paths:
configure
More information about the Scummvm-git-logs
mailing list