Disable optimization on alpha for the url-classifier component
authorMike Hommey <glandium@debian.org>
Sun, 2 Nov 2008 16:56:24 +0000 (17:56 +0100)
committerCarsten Schoenert <c.schoenert@t-online.de>
Thu, 3 Jun 2021 15:22:34 +0000 (16:22 +0100)
The use of this component leads to crashes when built with optimizations.

Gbp-Pq: Topic porting
Gbp-Pq: Name Disable-optimization-on-alpha-for-the-url-classifier.patch

comm/suite/components/build/Makefile.in

index 2387227ab4cb22f6caaf06ce9243bad8fc65478d..d5ca1ba5137b7e2898ca8001ed29caf58a281d39 100644 (file)
@@ -6,3 +6,7 @@ include $(topsrcdir)/config/rules.mk
 
 # Ensure that we don't embed a manifest referencing the CRT.
 EMBED_MANIFEST_AT =
+
+ifeq ($(OS_TEST),alpha)
+MOZ_OPTIMIZE_FLAGS := -O0
+endif