* [Buildroot] [Bug 4303] New: Toolchains qmake causes DEBUG builds with -O2
@ 2011-10-12 13:14 bugzilla at busybox.net
2012-01-31 22:21 ` [Buildroot] [Bug 4303] " bugzilla at busybox.net
2012-02-01 8:45 ` bugzilla at busybox.net
0 siblings, 2 replies; 3+ messages in thread
From: bugzilla at busybox.net @ 2011-10-12 13:14 UTC (permalink / raw)
To: buildroot
https://bugs.busybox.net/show_bug.cgi?id=4303
Summary: Toolchains qmake causes DEBUG builds with -O2
Product: buildroot
Version: unspecified
Platform: PC
OS/Version: Linux
Status: NEW
Severity: minor
Priority: P5
Component: Other
AssignedTo: unassigned at buildroot.uclibc.org
ReportedBy: buildroot at bluespirit.la
CC: buildroot at uclibc.org
Estimated Hours: 0.0
Created attachment 3637
--> https://bugs.busybox.net/attachment.cgi?id=3637
.config file of buildroot 2011.08
When compiling/installing Qt with buildroot, also the qmake.conf is correct.
When buildroot is compiled with the "-O2" flag, the QMAKE_CXXFLAGS of
qmake.conf also includes the "-O2" flag, which causes that all builds (even the
DEBUG ones) are compiled with "-O2", and thus the debugger goes crazy ;)
I would suggest, that when writing the QMAKE_CXXFLAGS (and QMAKE_CFLAGS) to
qmake.conf, we should filter the flags (e.g. -pipe is ok).
############ Result ##############
#
# qmake configuration for building with arm-linux-g++
#
include(../../common/g++.conf)
include(../../common/linux.conf)
include(../../common/qws.conf)
QMAKE_LFLAGS =
QMAKE_CXXFLAGS = -pipe -O2 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE
-D_FILE_OFFSET_BITS=64
QMAKE_CFLAGS = -pipe -O2 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE
-D_FILE_OFFSET_BITS=64
QMAKE_STRIP = /opt/damian/toolchain-arm/usr/bin/arm-none-linux-gnueabi-strip
QMAKE_RANLIB =
/opt/damian/toolchain-arm/usr/bin/arm-none-linux-gnueabi-ranlib
QMAKE_OBJCOPY =
/opt/damian/toolchain-arm/usr/bin/arm-none-linux-gnueabi-objcopy
QMAKE_AR = /opt/damian/toolchain-arm/usr/bin/arm-none-linux-gnueabi-ar
cqs
QMAKE_LINK_SHLIB = /opt/damian/toolchain-arm/usr/bin/arm-none-linux-gnueabi-g++
QMAKE_LINK = /opt/damian/toolchain-arm/usr/bin/arm-none-linux-gnueabi-g++
QMAKE_CXX = /opt/damian/toolchain-arm/usr/bin/arm-none-linux-gnueabi-g++
QMAKE_CC = /opt/damian/toolchain-arm/usr/bin/arm-none-linux-gnueabi-gcc
# modifications to g++.conf
# modifications to linux.conf
load(qt_config)
--
Configure bugmail: https://bugs.busybox.net/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.
^ permalink raw reply [flat|nested] 3+ messages in thread
* [Buildroot] [Bug 4303] Toolchains qmake causes DEBUG builds with -O2
2011-10-12 13:14 [Buildroot] [Bug 4303] New: Toolchains qmake causes DEBUG builds with -O2 bugzilla at busybox.net
@ 2012-01-31 22:21 ` bugzilla at busybox.net
2012-02-01 8:45 ` bugzilla at busybox.net
1 sibling, 0 replies; 3+ messages in thread
From: bugzilla at busybox.net @ 2012-01-31 22:21 UTC (permalink / raw)
To: buildroot
https://bugs.busybox.net/show_bug.cgi?id=4303
Thomas Petazzoni <thomas.petazzoni@free-electrons.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |WONTFIX
--- Comment #1 from Thomas Petazzoni <thomas.petazzoni@free-electrons.com> 2012-01-31 22:21:05 UTC ---
Why should we make a special case for Qt here ? If you tell Buildroot to use
-O2, then it sounds quite logical to have -O2 in the qmake CXXFLAGS, no ? If
you don't want -O2 in the qmake CXXFLAGS, then tell Buildroot to not use -O2,
and you're all set.
--
Configure bugmail: https://bugs.busybox.net/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.
^ permalink raw reply [flat|nested] 3+ messages in thread
* [Buildroot] [Bug 4303] Toolchains qmake causes DEBUG builds with -O2
2011-10-12 13:14 [Buildroot] [Bug 4303] New: Toolchains qmake causes DEBUG builds with -O2 bugzilla at busybox.net
2012-01-31 22:21 ` [Buildroot] [Bug 4303] " bugzilla at busybox.net
@ 2012-02-01 8:45 ` bugzilla at busybox.net
1 sibling, 0 replies; 3+ messages in thread
From: bugzilla at busybox.net @ 2012-02-01 8:45 UTC (permalink / raw)
To: buildroot
https://bugs.busybox.net/show_bug.cgi?id=4303
--- Comment #2 from Will Wagner <will_wagner@carallon.com> 2012-02-01 08:45:47 UTC ---
(In reply to comment #1)
> Why should we make a special case for Qt here ? If you tell Buildroot to use
> -O2, then it sounds quite logical to have -O2 in the qmake CXXFLAGS, no ? If
> you don't want -O2 in the qmake CXXFLAGS, then tell Buildroot to not use -O2,
> and you're all set.
The reason Qt is different from other packages is that there is a menu option
on whether you want to build debug or release. If you were to select debug it
doesn't seem unreasonable that it should be built with -O0.
That said, I'm not too bothered about seeing this fixed.
--
Configure bugmail: https://bugs.busybox.net/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2012-02-01 8:45 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-10-12 13:14 [Buildroot] [Bug 4303] New: Toolchains qmake causes DEBUG builds with -O2 bugzilla at busybox.net
2012-01-31 22:21 ` [Buildroot] [Bug 4303] " bugzilla at busybox.net
2012-02-01 8:45 ` bugzilla at busybox.net
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox