From f6d973c5cacb9b52f32118caa879dcc7922d3c98 Mon Sep 17 00:00:00 2001 From: Doug Goldstein Date: Wed, 21 Jun 2017 11:51:15 -0500 Subject: [PATCH] compiler-rt: drop unused bits Since a3fe7c75bf this file has been unused and should have been deleted with that commit. --- recipes-devtools/rust/compiler-rt.inc | 28 --------------------------- 1 file changed, 28 deletions(-) delete mode 100644 recipes-devtools/rust/compiler-rt.inc diff --git a/recipes-devtools/rust/compiler-rt.inc b/recipes-devtools/rust/compiler-rt.inc deleted file mode 100644 index 9fd5d42..0000000 --- a/recipes-devtools/rust/compiler-rt.inc +++ /dev/null @@ -1,28 +0,0 @@ -SUMMARY = "Rust compiler run-time" -HOMEPAGE = "http://www.rust-lang.org" -SECTION = "devel" -LICENSE = "MIT" -LIC_FILES_CHKSUM = "file://src/compiler-rt/LICENSE.TXT;md5=bf24bca27049b52e9738451aa55771d4" - -require rust.inc -ALLOW_EMPTY_${PN} = "1" - -DEPENDS += "rust-llvm-native (=${PV})" -# dev and staticdev should NOT depend on the binary package -RDEPENDS_${PN}-dev = "" -INSANE_SKIP_${PN}-dev = "staticdev" - -DISABLE_STATIC = "" -INHIBIT_DEFAULT_RUST_DEPS = "1" - -do_compile () { - oe_runmake ${TARGET_SYS}/rt/libcompiler-rt.a -} - -do_install () { - mkdir -p ${D}${libdir} - cp ${TARGET_SYS}/rt/libcompiler-rt.a ${D}${libdir}/libcompiler-rt.a -} - -FILES_${PN}-dev = "" -FILES_${PN}-staticdev = "${libdir}/*.a"