mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-26 23:13:27 +08:00
b1af56fddc
cegui needs gcc >= 5 since bump to current master in commit352a8b3fe8
and17f7f6156e
or the build will fail on: /home/buildroot/autobuild/instance-1/output-1/build/cegui-00b4e1fe174da53b7ed726ab5970ba51bd5b5ee0/cegui/src/widgets/Spinner.cpp: In member function 'virtual CEGUI::String CEGUI::Spinner::getTextFromValue() const': /home/buildroot/autobuild/instance-1/output-1/build/cegui-00b4e1fe174da53b7ed726ab5970ba51bd5b5ee0/cegui/src/widgets/Spinner.cpp:310:116: error: 'defaultfloat' is not a member of 'std' tmp << std::fixed << std::setprecision(d_precision) << d_currentValue << std::setprecision(defPrec) << std::defaultfloat; ^ defaultfloat is not available before gcc 5 andc4b64f5bca
Fixes: - http://autobuild.buildroot.org/results/006ce109980a76870d2347e53307082b36d9904a Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
25 lines
1006 B
Plaintext
25 lines
1006 B
Plaintext
comment "cegui needs a toolchain w/ C++, threads, dynamic library, wchar, gcc >= 5"
|
|
depends on !BR2_TOOLCHAIN_HAS_THREADS || !BR2_INSTALL_LIBSTDCPP \
|
|
|| BR2_STATIC_LIBS || !BR2_USE_WCHAR \
|
|
|| !BR2_TOOLCHAIN_GCC_AT_LEAST_5
|
|
|
|
config BR2_PACKAGE_CEGUI
|
|
bool "cegui"
|
|
depends on BR2_INSTALL_LIBSTDCPP
|
|
depends on !BR2_STATIC_LIBS
|
|
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_5 # C++11 PR59987
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
|
depends on BR2_USE_WCHAR
|
|
select BR2_PACKAGE_GLM
|
|
select BR2_PACKAGE_LIBGLFW if BR2_PACKAGE_HAS_LIBGL # SampleBrowser dependency
|
|
select BR2_PACKAGE_LIBICONV if !BR2_ENABLE_LOCALE
|
|
help
|
|
Crazy Eddie's GUI System is a free library providing windowing
|
|
and widgets for graphics APIs / engines where such
|
|
functionality is not natively available, or severely lacking.
|
|
The library is object orientated, written in C++, and targeted
|
|
at games developers who should be spending their time creating
|
|
great games, not building GUI sub-systems!
|
|
|
|
http://www.cegui.org.uk/
|