1
0

- disable rust debug symbols to fix build on %ix86

OBS-URL: https://build.opensuse.org/package/show/mozilla:Factory/MozillaFirefox?expand=0&rev=686
This commit is contained in:
Wolfgang Rosenauer 2018-09-24 20:59:09 +00:00 committed by Git OBS Bridge
parent e039c5177b
commit 42ab585fa7
2 changed files with 7 additions and 2 deletions

View File

@ -16,6 +16,7 @@ Sat Sep 22 09:03:53 UTC 2018 - astieger@suse.com
* Fixed rendering of some web sites
* Restored compatibility with some sites using deprecated TLS
settings
- disable rust debug symbols to fix build on %ix86
-------------------------------------------------------------------
Mon Sep 3 10:47:43 UTC 2018 - wr@rosenauer.org

View File

@ -13,7 +13,7 @@
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
@ -345,11 +345,15 @@ ac_add_options --enable-pie
%if 0%{?suse_version} > 1320
ac_add_options --enable-optimize="-g -O2"
%endif
%ifarch %ix86 %arm
%ifarch %arm
%if 0%{?suse_version} > 1230
ac_add_options --disable-optimize
%endif
%endif
# bmo#1441155 - Disable the generation of Rust debug symbols on Linux32
%ifarch %ix86
ac_add_options --disable-debug-symbols
%endif
%ifarch %arm
ac_add_options --disable-elf-hack
%endif