aboutsummarylogtreecommitdiffstats
path: root/0004-Fix-too-many-sections-assemler-error-in-OpenGL-facto.patch
diff options
context:
space:
mode:
authorMartchus2019-06-26 14:41:33 +0200
committerMartchus2019-06-26 14:41:33 +0200
commit7e9790ef70cdbf8552595445b938883ba09b475b (patch)
tree54f43d30ddceeb2d28776b5e9966044aab7f7f81 /0004-Fix-too-many-sections-assemler-error-in-OpenGL-facto.patch
parent748a3f030424dc491a60d5166204dee722f9cbb6 (diff)
downloadaur-7e9790ef70cdbf8552595445b938883ba09b475b.tar.gz
Update to 5.13.0
Diffstat (limited to '0004-Fix-too-many-sections-assemler-error-in-OpenGL-facto.patch')
-rw-r--r--0004-Fix-too-many-sections-assemler-error-in-OpenGL-facto.patch29
1 files changed, 0 insertions, 29 deletions
diff --git a/0004-Fix-too-many-sections-assemler-error-in-OpenGL-facto.patch b/0004-Fix-too-many-sections-assemler-error-in-OpenGL-facto.patch
deleted file mode 100644
index a8f88d01402d..000000000000
--- a/0004-Fix-too-many-sections-assemler-error-in-OpenGL-facto.patch
+++ /dev/null
@@ -1,29 +0,0 @@
-From c92307d539cd71249031bd42eac1d7d4a78fa939 Mon Sep 17 00:00:00 2001
-From: Martchus <martchus@gmx.net>
-Date: Sun, 18 Sep 2016 13:48:51 +0200
-Subject: [PATCH 04/34] Fix too many sections assemler error in OpenGL factory
-
-On x86_64 qopenglversionfunctionsfactory.o exceeds the
-limit of 32768 sections.
-Hence the assembler option -mbig-obj is required.
----
- src/gui/opengl/opengl.pri | 3 ++-
- 1 file changed, 2 insertions(+), 1 deletion(-)
-
-diff --git a/src/gui/opengl/opengl.pri b/src/gui/opengl/opengl.pri
-index 24758afdeb..aa04b4a672 100644
---- a/src/gui/opengl/opengl.pri
-+++ b/src/gui/opengl/opengl.pri
-@@ -3,7 +3,8 @@
- qtConfig(opengl): CONFIG += opengl
- qtConfig(opengles2): CONFIG += opengles2
-
--qtConfig(opengl) {
-+qtConfig(opengl)|qtConfig(opengles2) {
-+ mingw:QMAKE_CXXFLAGS+="-Wa,-mbig-obj"
-
- HEADERS += opengl/qopengl.h \
- opengl/qopengl_p.h \
---
-2.21.0
-