Redid how compiler-rt is built by using the Rust makefiles to build it instead of compiler-rt's build system. Rust itself deviated from using compiler-rt's build system and provided their own rules requiring the source tree to be configured to use them.
17 lines
456 B
BlitzBasic
17 lines
456 B
BlitzBasic
require rust-llvm.inc
|
|
require rust-source-${PV}.inc
|
|
|
|
LIC_FILES_CHKSUM = "file://LICENSE.TXT;md5=43fdaa303c1c5589ad60f4ffc6a0b9ce"
|
|
|
|
do_install_prepend () {
|
|
# the install does a sed on this without installing the file
|
|
# we don't need it for anything
|
|
mkdir -p "${D}/usr/share/llvm/cmake"
|
|
touch "${D}/usr/share/llvm/cmake/LLVMExports-noconfig.cmake"
|
|
}
|
|
|
|
do_install_append () {
|
|
# we don't need any of this stuff to build Rust
|
|
rm -rf "${D}/usr/lib/cmake"
|
|
}
|