projects
/
thunderbird.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
21d2f88
)
Disable optimization on alpha for the url-classifier component
author
Mike Hommey
<glandium@debian.org>
Sun, 2 Nov 2008 16:56:24 +0000
(17:56 +0100)
committer
Carsten Schoenert
<c.schoenert@t-online.de>
Fri, 11 Feb 2022 17:50:23 +0000
(17:50 +0000)
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
patch
|
blob
|
history
diff --git
a/comm/suite/components/build/Makefile.in
b/comm/suite/components/build/Makefile.in
index 2387227ab4cb22f6caaf06ce9243bad8fc65478d..d5ca1ba5137b7e2898ca8001ed29caf58a281d39 100644
(file)
--- a/
comm/suite/components/build/Makefile.in
+++ b/
comm/suite/components/build/Makefile.in
@@
-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