mirror of
https://git.yoctoproject.org/poky
synced 2026-04-01 23:02:21 +02:00
fix-gcc9.patch
removed since it's included in 11.1.3
Changelog:
=========
- Fixed compilation on GCC 9.4
- Worked around an internal compiler error when using C++20 modules with GCC
14.2 and earlier
- Worked around a bug in GCC 6
- Fixed an issue caused by instantiating 'formatter<const T>'
- Fixed formatting into 'std::ostreambuf_iterator' when using format string
compilation
- Restored a constraint on the map formatter so that it correctly reports as
unformattable when the element is
- Reduced the size of format specs
- Readded 'args()' to 'fmt::format_context'
- Fixed a bogus MSVC warning
- Fixed a pedantic mode error in the CMake config
- Fixed ABI compatibility with earlier 11.x versions
- Added 'wchar_t' support to the 'std::bitset' formatter
- Prefixed CMake components with 'fmt-' to simplify usage of {fmt} via
'add_subdirectory'
- Updated docs for meson
- Fixed a compilation error in chrono on nvcc
- Fixed various warnings
(From OE-Core rev: cfe2d61fa142ae146abdb44a3de028b9804ddc91)
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
17 lines
549 B
BlitzBasic
17 lines
549 B
BlitzBasic
SUMMARY = "open-source formatting library for C++"
|
|
DESCRIPTION = "{fmt} is an open-source formatting library for C++. It can be used as a safe and fast alternative to (s)printf and iostreams."
|
|
HOMEPAGE = "https://fmt.dev"
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=b9257785fc4f3803a4b71b76c1412729"
|
|
|
|
SRC_URI = "git://github.com/fmtlib/fmt;branch=master;protocol=https"
|
|
SRCREV = "9cf9f38eded63e5e0fb95cd536ba51be601d7fa2"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
inherit cmake
|
|
|
|
EXTRA_OECMAKE += "-DBUILD_SHARED_LIBS=ON"
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|