Skip to content

Commit 104e859

Browse files
committed
builds: don't pass -silent to qt when building in debug mode
This means we'll get build output like this when building with DEBUG=1: g++ -c -pipe -ffunction-sections -O2 -fPIC -std=c++11 -fno-exceptions <lots more> ../../corelib/kernel/qcoreapplication.cpp rather than just: compiling ../../corelib/kernel/qcoreapplication.cpp
1 parent e2c5006 commit 104e859

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

depends/packages/qt.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ $(package)_extra_sources += $($(package)_qttools_file_name)
2626

2727
define $(package)_set_vars
2828
$(package)_config_opts_release = -release
29+
$(package)_config_opts_release += -silent
2930
$(package)_config_opts_debug = -debug
3031
$(package)_config_opts += -bindir $(build_prefix)/bin
3132
$(package)_config_opts += -c++std c++11
@@ -77,7 +78,6 @@ $(package)_config_opts += -qt-pcre
7778
$(package)_config_opts += -qt-harfbuzz
7879
$(package)_config_opts += -system-zlib
7980
$(package)_config_opts += -static
80-
$(package)_config_opts += -silent
8181
$(package)_config_opts += -v
8282
$(package)_config_opts += -no-feature-bearermanagement
8383
$(package)_config_opts += -no-feature-colordialog

0 commit comments

Comments
 (0)