From: wolf Date: Wed, 9 Dec 1998 15:51:06 +0000 (+0000) Subject: Remove -funroll-loops from the Makefiles after I discovered that this options miscomp... X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8167bbdce26cf589b5177a145a92dc880aaba4af;p=dealii-svn.git Remove -funroll-loops from the Makefiles after I discovered that this options miscompiles one of my programs. (I was lucky, as the problem was obvious, i.e. visible in a picture...) git-svn-id: https://svn.dealii.org/trunk@687 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/base/source/Makefile b/deal.II/base/source/Makefile index 318734681d..c4eda5a3d1 100644 --- a/deal.II/base/source/Makefile +++ b/deal.II/base/source/Makefile @@ -6,7 +6,7 @@ CXXFLAGS.g= -DDEBUG -g -Wall -W -pedantic -Wconversion \ -Winline -Woverloaded-virtual \ $(INCLUDE) CXXFLAGS =-O3 -Wuninitialized -finline-functions -ffast-math \ - -funroll-loops -felide-constructors -fnonnull-objects \ + -felide-constructors -fnonnull-objects \ $(INCLUDE) cc-files = $(wildcard *.cc) diff --git a/deal.II/deal.II/Make.global_options b/deal.II/deal.II/Make.global_options index 36ca34481e..67d4157a3c 100644 --- a/deal.II/deal.II/Make.global_options +++ b/deal.II/deal.II/Make.global_options @@ -22,7 +22,7 @@ CXXFLAGS.g= -DDEBUG -g -Wall -W -pedantic -Wconversion \ -Winline -Woverloaded-virtual \ $(INCLUDE) -Ddeal_II_dimension=$(deal_II_dimension) CXXFLAGS =-O3 -Wuninitialized -finline-functions -ffast-math \ - -funroll-loops -felide-constructors -fnonnull-objects \ + -felide-constructors -fnonnull-objects \ $(INCLUDE) \ -Ddeal_II_dimension=$(deal_II_dimension) diff --git a/deal.II/deal.II/source/Makefile b/deal.II/deal.II/source/Makefile index 2b0cb2ad7d..9371aafbe5 100644 --- a/deal.II/deal.II/source/Makefile +++ b/deal.II/deal.II/source/Makefile @@ -33,7 +33,7 @@ CXXFLAGS.g= -DDEBUG -g -Wall -W -pedantic -Wconversion \ -Winline -Woverloaded-virtual \ $(INCLUDE) -Ddeal_II_dimension=$(deal_II_dimension) CXXFLAGS =-O3 -Wuninitialized -finline-functions -ffast-math \ - -funroll-loops -felide-constructors -fnonnull-objects \ + -felide-constructors -fnonnull-objects \ $(INCLUDE) \ -Ddeal_II_dimension=$(deal_II_dimension) diff --git a/deal.II/lac/source/Makefile b/deal.II/lac/source/Makefile index e06fc637fc..d9311df5c1 100644 --- a/deal.II/lac/source/Makefile +++ b/deal.II/lac/source/Makefile @@ -6,7 +6,7 @@ CXXFLAGS.g= -DDEBUG -g -Wall -W -pedantic -Wconversion \ -Winline -Woverloaded-virtual \ $(INCLUDE) CXXFLAGS =-O3 -Wuninitialized -finline-functions -ffast-math \ - -funroll-loops -felide-constructors -fnonnull-objects \ + -felide-constructors -fnonnull-objects \ $(INCLUDE) cc-files = $(wildcard *.cc)