OSDN Git Service

[Build] Using -O3, not -O2.
authorK.Ohta <whatisthis.sowhat@gmail.com>
Wed, 27 Apr 2016 16:54:44 +0000 (01:54 +0900)
committerK.Ohta <whatisthis.sowhat@gmail.com>
Wed, 27 Apr 2016 16:54:44 +0000 (01:54 +0900)
source/ChangeLog
source/RELEASENOTE.txt
source/build-cmake/buildvars.dat
source/build-cmake/buildvars_mingw.dat
source/build-cmake/config_build_cross_win32.sh

index 41c8efc..9cbf993 100644 (file)
@@ -4,7 +4,7 @@
   * Merge upstream 2016-04-13 .
   * [General] Fix save/load state.
   * [General] Build with GCC6 for GNU/Linux .
-  * [General] Build with "-g -O2 -fvect-cost-model=dynamic -ftree-vectorize",
+  * [General] Build with "-g -O3 -fvect-cost-model=dynamic -ftree-vectorize",
     not with "-g -Og" .
   * [FM77AV] Fix not repeating with scan key mode, fixed YS2. 
   * [FM7/Display] VRAM: Fix positioning of wrote line .
@@ -16,7 +16,7 @@
   * [Qt/Sound] Fix wrong balance and volume after re-starting.
     i.e:) With 0db and panning to right, and re-starting, volume and balance hasn't kept.
 
--- Apr 28, 2016 00:51:34 +0900 K.Ohta <whatisthis.sowhat@gmail.com>
+-- Apr 28, 2016 01:53:55 +0900 K.Ohta <whatisthis.sowhat@gmail.com>
 
 * SNAPSHOT Apr 09, 2016
   * Merge upstream 2016-04-01 .
index be270ba..a20c094 100644 (file)
@@ -88,7 +88,7 @@ Changes:
   * Merge upstream 2016-04-13 .
   * [General] Fix save/load state.
   * [General] Build with GCC6 for GNU/Linux .
-  * [General] Build with "-g -O2 -fvect-cost-model=dynamic -ftree-vectorize",
+  * [General] Build with "-g -O3 -fvect-cost-model=dynamic -ftree-vectorize",
     not with "-g -Og" .
   * [FM77AV] Fix not repeating with scan key mode, fixed YS2. 
   * [FM7/Display] VRAM: Fix positioning of wrote line .
@@ -100,7 +100,7 @@ Changes:
   * [Qt/Sound] Fix wrong balance and volume after re-starting.
     i.e:) With 0db and panning to right, and re-starting, volume and balance hasn't kept.
 
--- Apr 28, 2016 00:51:34 +0900 K.Ohta <whatisthis.sowhat@gmail.com>
+-- Apr 28, 2016 01:53:55 +0900 K.Ohta <whatisthis.sowhat@gmail.com>
 
 Upstream changes:
 -----
index 776fa99..d157b6d 100644 (file)
@@ -4,11 +4,11 @@ CCMAKE_CXX=g++-6
 #CCMAKE_CC=clang-3.8
 #CCMAKE_CXX=clang++-3.8
 
-MAKEFLAGS_CXX="-g -O2 -fvect-cost-model=dynamic -ftree-vectorize -flto -DNDEBUG" 
-MAKEFLAGS_CC="-g -O2 -fvect-cost-model=dynamic -ftree-vectorize  -flto -DNDEBUG"
+MAKEFLAGS_CXX="-g -O3 -fvect-cost-model=dynamic -ftree-vectorize -flto -DNDEBUG" 
+MAKEFLAGS_CC="-g -O3 -fvect-cost-model=dynamic -ftree-vectorize  -flto -DNDEBUG"
 
-MAKEFLAGS_LIB_CXX="-g -O2 -fvect-cost-model=dynamic -ftree-vectorize -DNDEBUG" 
-MAKEFLAGS_LIB_CC="-g -O2 -fvect-cost-model=dynamic -ftree-vectorize  -DNDEBUG"
+MAKEFLAGS_LIB_CXX="-g -O3 -fvect-cost-model=dynamic -ftree-vectorize -DNDEBUG" 
+MAKEFLAGS_LIB_CC="-g -O3 -fvect-cost-model=dynamic -ftree-vectorize  -DNDEBUG"
 
 #MAKEFLAGS_CXX="-g -O4 -ftree-vectorize -DNDEBUG" 
 #MAKEFLAGS_CC="-g -O4 -ftree-vectorize -DNDEBUG"
index 8862f8f..84f127d 100644 (file)
@@ -2,8 +2,8 @@
 CCMAKE_CC=gcc
 CCMAKE_CXX=g++
 
-MAKEFLAGS_CXX="-O2 -fvect-cost-model=dynamic -ftree-vectorize -DNDEBUG" 
-MAKEFLAGS_CC="-O2 -fvect-cost-model=dynamic -ftree-vectorize -DNDEBUG"
+MAKEFLAGS_CXX="-O3 -fvect-cost-model=dynamic -ftree-vectorize -DNDEBUG" 
+MAKEFLAGS_CC="-O3 -fvect-cost-model=dynamic -ftree-vectorize -DNDEBUG"
 MAKEFLAGS_GENERAL="-j3"
 
 #BUILD_TYPE="Relwithdebinfo"
index 4b84fc9..d9feb0d 100755 (executable)
@@ -14,8 +14,8 @@ mkdir -p ./bin-win32/
 #if [ -e ./buildvars.dat ] ; then
 #    . ./buildvars.dat
 #fi
-MAKEFLAGS_CXX="-O2 -fvect-cost-model=dynamic -ftree-vectorize -DNDEBUG" 
-MAKEFLAGS_CC="-O2 -fvect-cost-model=dynamic -ftree-vectorize  -DNDEBUG"
+MAKEFLAGS_CXX="-O3 -fvect-cost-model=dynamic -ftree-vectorize -DNDEBUG" 
+MAKEFLAGS_CC="-O3 -fvect-cost-model=dynamic -ftree-vectorize  -DNDEBUG"
 BUILD_TYPE="Release"
 
 MAKEFLAGS_CXX="${MAKEFLAGS_CXX} -DWINVER=0x501"