[haiku-commits] haiku: hrev45320 - build/jam

  • From: fredrik.holmqvist@xxxxxxxxx
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Sun, 24 Feb 2013 08:52:30 +0100 (CET)

hrev45320 adds 1 changeset to branch 'master'
old head: 59dc9ee9552e994240a535467e88d15ee279938b
new head: e8d6e3fe3b85f88fe9506257b0cbbf5341a3a840
overview: http://cgit.haiku-os.org/haiku/log/?qt=range&q=e8d6e3f+%5E59dc9ee

----------------------------------------------------------------------------

e8d6e3f: Remove fno-tree-vrp compile flag.
  
  My tests hasn't shown any problems with removing it.
  Let me know if there still are.

                         [ Fredrik Holmqvist <fredrik.holmqvist@xxxxxxxxx> ]

----------------------------------------------------------------------------

Revision:    hrev45320
Commit:      e8d6e3fe3b85f88fe9506257b0cbbf5341a3a840
URL:         http://cgit.haiku-os.org/haiku/commit/?id=e8d6e3f
Author:      Fredrik Holmqvist <fredrik.holmqvist@xxxxxxxxx>
Date:        Sun Feb 24 07:45:47 2013 UTC

----------------------------------------------------------------------------

1 file changed, 2 insertions(+), 4 deletions(-)
build/jam/BuildSetup | 6 ++----

----------------------------------------------------------------------------

diff --git a/build/jam/BuildSetup b/build/jam/BuildSetup
index fe3340f..4c612b0 100644
--- a/build/jam/BuildSetup
+++ b/build/jam/BuildSetup
@@ -131,14 +131,12 @@ if $(HAIKU_USE_GCC_PIPE) = 1 {
 # results in some broken code.
 # TODO: remove the -fno-strict-aliasing option when all code has been
 #              analyzed/fixed with regard to aliasing.
-# TODO: retest/remove the -fno-tree-vrp option as soon as we have updated our
-#              gcc4 compiler.
 if $(HAIKU_GCC_VERSION[1]) >= 3 {
-       HAIKU_GCC_BASE_FLAGS += -fno-strict-aliasing -fno-tree-vrp ;
+       HAIKU_GCC_BASE_FLAGS += -fno-strict-aliasing ;
 }
 
 if $(HOST_GCC_VERSION[1]) >= 3 {
-       HOST_GCC_BASE_FLAGS += -fno-strict-aliasing -fno-tree-vrp ;
+       HOST_GCC_BASE_FLAGS += -fno-strict-aliasing ;
 }
 
 # override gcc 2.95.3's header directory -- strictly necessary only when using


Other related posts:

  • » [haiku-commits] haiku: hrev45320 - build/jam - fredrik . holmqvist