Code

- Builds with -O2 segfault on arm, so disable it on arm for now until the
authorBernd Zeimetz <bzed@debian.org>
Sun, 24 Feb 2008 19:24:07 +0000 (20:24 +0100)
committerBernd Zeimetz <bzed@debian.org>
Sun, 24 Feb 2008 19:24:07 +0000 (20:24 +0100)
    bug is properly debugged, which will take some time (Closes: #447041).

debian/changelog
debian/rules

index 6174cd35a1861024940931e31f4551443267abf2..09225480962beb860398b66e3a8906f587ceba85 100644 (file)
@@ -10,8 +10,10 @@ rrdtool (1.2.27-1) unstable; urgency=low
       David Martínez Moreno.
   * debian/control:
     - Removing the ttf-dejavu dependency from librrd2.
+    - Builds with -O2 segfault on arm, so disable it on arm for now until the
+      bug is properly debugged, which will take some time (Closes: #447041).
 
- -- Bernd Zeimetz <bzed@debian.org>  Sun, 24 Feb 2008 16:25:05 +0100
+ -- Bernd Zeimetz <bzed@debian.org>  Sun, 24 Feb 2008 17:40:39 +0100
 
 rrdtool (1.2.26-1) unstable; urgency=low
 
index 679934a177982a95abddb270e9d14b421bd2454f..d3be3ee3ca30ff2cfec2770f585a4e22c9575a05 100755 (executable)
@@ -59,8 +59,11 @@ CFLAGS += -Wall -g
 ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
         CFLAGS += -O0
 else
+#don't optimize on arm for now - #447041
+ifneq ($(DEB_HOST_GNU_TYPE), arm)
         CFLAGS += -O2
 endif
+endif
 
 LDFLAGS="-Wl,-z,defs"