keep old optimization setup for s390(x)

xpcshell crashes with "-g -O2", potential gcc issue to be investigated later
This commit is contained in:
Dan Horák 2017-03-01 12:10:05 +01:00
parent e9e814a37e
commit 9a470d9523
1 changed files with 5 additions and 0 deletions

View File

@ -347,7 +347,12 @@ echo "ac_add_options --disable-debug" >> .mozconfig
echo 'ac_add_options --enable-optimize="-g -O2"' >> .mozconfig
%else
%if 0%{?fedora} > 25
%ifarch s390 s390x
# crashes in xpcshell with "-g -O2", potential gcc issue
echo "ac_add_options --enable-optimize" >> .mozconfig
%else
echo 'ac_add_options --enable-optimize="-g -O2"' >> .mozconfig
%endif
%else
echo "ac_add_options --enable-optimize" >> .mozconfig
%endif