mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-04-20 11:38:34 +00:00
abseil-cpp: Relax build requirements
While better hardware acceleration is definitely advantageous, there is no hard requirement defined by the upstream. Removing this will allow builds targeting older hardware where DEFAULTTUNE can't be changed. If found useful, this can also be backported to lower branches. Signed-off-by: Anatol Belski <anbelski@linux.microsoft.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
This commit is contained in:
@@ -34,27 +34,3 @@ ALLOW_EMPTY_${PN} = "1"
|
||||
FILES_${PN} = "${libdir}/libabsl_*.so ${libdir}/cmake"
|
||||
FILES_${PN}-dev = "${includedir}"
|
||||
|
||||
python () {
|
||||
arch = d.getVar("TARGET_ARCH")
|
||||
|
||||
if arch == "aarch64":
|
||||
tunes = d.getVar("TUNE_FEATURES")
|
||||
if not tunes:
|
||||
raise bb.parse.SkipRecipe("%s-%s Needs support for crypto on armv8" % (pkgn, pkgv))
|
||||
return
|
||||
pkgn = d.getVar("PN")
|
||||
pkgv = d.getVar("PV")
|
||||
if "crypto" not in tunes:
|
||||
raise bb.parse.SkipRecipe("%s-%s Needs support for crypto on armv8" % (pkgn, pkgv))
|
||||
|
||||
if arch == "x86_64":
|
||||
tunes = d.getVar("TUNE_FEATURES")
|
||||
if not tunes:
|
||||
raise bb.parse.SkipRecipe("%s-%s Needs support for corei7 on x86_64" % (pkgn, pkgv))
|
||||
return
|
||||
pkgn = d.getVar("PN")
|
||||
pkgv = d.getVar("PV")
|
||||
if "corei7" not in tunes:
|
||||
raise bb.parse.SkipRecipe("%s-%s Needs support for corei7 on x86_64" % (pkgn, pkgv))
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user