mirror of
https://git.yoctoproject.org/poky
synced 2026-02-22 17:39:39 +01:00
A header-only library for fast number parsing An older version of this recipe is included in meta-oe, since fastfloat is also used by libplacebo. If the recipe is accepted, I will send a patch for removal there. The reason why this is needed in oe-core is the upcoming vte release, which uses fastfloat but pulls it as a wrap-based subproject by default. (From OE-Core rev: 09aba21e7eb51b2ebe5448135c8c2438985240fe) Signed-off-by: Markus Volk <f_l_k@t-online.de> Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
16 lines
539 B
BlitzBasic
16 lines
539 B
BlitzBasic
SUMMARY = "fast_float number parsing library: 4x faster than strtod"
|
|
HOMEPAGE = "https://github.com/fastfloat/fast_float"
|
|
LICENSE = "Apache-2.0 & BSL-1.0 & MIT"
|
|
LIC_FILES_CHKSUM = " \
|
|
file://LICENSE-MIT;md5=32b11d50c7d9788d4270f6a83f3e68eb \
|
|
file://LICENSE-APACHE;md5=81db248e90379bcfc0582b578b009bc3 \
|
|
file://LICENSE-BOOST;md5=2c7a3fa82e66676005cd4ee2608fd7d2 \
|
|
"
|
|
|
|
SRC_URI = "git://github.com/fastfloat/fast_float.git;protocol=https;branch=main"
|
|
|
|
SRCREV = "77cc847c842c49e7e3477c1e95da2b6540166d66"
|
|
S = "${WORKDIR}/git"
|
|
|
|
inherit cmake
|