summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJavier Viguera <javier.viguera@digi.com>2015-02-19 18:56:20 +0100
committerOtavio Salvador <otavio@ossystems.com.br>2015-02-21 11:38:01 -0200
commit0c4de80867c3ab4e9682dd7802d3fd907d1e1a23 (patch)
treefbb94f0dc6c83a1c34ce955361faa14c6a4ac0cd
parentbcdbe984d2a29e69d62b741bb7aa4008dcb742aa (diff)
downloadmeta-fsl-arm-daisy.tar.gz
qt4: sync g++.conf file with upstreamdaisy
Since this g++.conf file was added to fix some MX6 issues the upstream version of the file in which it's based has received some more fixes: http://git.openembedded.org/openembedded-core/commit/?id=6456b596a73232429e0d223089f32dc350ea20b0 http://git.openembedded.org/openembedded-core/commit/?id=6c78f629323bea0be44181d60e3ce45be0416093 This commit fixes an error building QT applications in debug mode (CONFIG+=debug in the QT project file) with a toolchain generated for a MX6 machine (with populate_sdk). Signed-off-by: Javier Viguera <javier.viguera@digi.com> Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
-rw-r--r--recipes-qt/qt4/qt4/mx6/g++.conf5
1 files changed, 5 insertions, 0 deletions
diff --git a/recipes-qt/qt4/qt4/mx6/g++.conf b/recipes-qt/qt4/qt4/mx6/g++.conf
index 4a4729e..2843d1e 100644
--- a/recipes-qt/qt4/qt4/mx6/g++.conf
+++ b/recipes-qt/qt4/qt4/mx6/g++.conf
@@ -2,6 +2,8 @@
2# qmake configuration for common gcc 2# qmake configuration for common gcc
3# 3#
4 4
5QMAKE_COMPILER = gcc
6
5QMAKE_CC = $(OE_QMAKE_CC) 7QMAKE_CC = $(OE_QMAKE_CC)
6QMAKE_CFLAGS += -pipe $(OE_QMAKE_CFLAGS) -DLINUX=1 -DEGL_API_FB=1 8QMAKE_CFLAGS += -pipe $(OE_QMAKE_CFLAGS) -DLINUX=1 -DEGL_API_FB=1
7QMAKE_CFLAGS_RELEASE_WITH_DEBUGINFO += $(OE_QMAKE_CFLAGS) 9QMAKE_CFLAGS_RELEASE_WITH_DEBUGINFO += $(OE_QMAKE_CFLAGS)
@@ -49,6 +51,9 @@ QMAKE_PCH_OUTPUT_EXT = .gch
49QMAKE_LFLAGS_BSYMBOLIC_FUNC = -Wl,-Bsymbolic-functions 51QMAKE_LFLAGS_BSYMBOLIC_FUNC = -Wl,-Bsymbolic-functions
50QMAKE_LFLAGS_DYNAMIC_LIST = -Wl,--dynamic-list, 52QMAKE_LFLAGS_DYNAMIC_LIST = -Wl,--dynamic-list,
51 53
54# do not depend on gdb
55CONFIG -= gdb_dwarf_index
56
52# some linking helper... 57# some linking helper...
53CONFIG += rpath_libdirs 58CONFIG += rpath_libdirs
54 59