mirror of
https://git.yoctoproject.org/poky
synced 2026-02-10 02:33:02 +01:00
In the meta-rust repo at commit: 448047c Upgrade to 1.54.0 (#359) Make the required directories: mkdir ../oe-core/meta/recipes-devtools/rust mkdir ../oe-core/meta/recipes-devtools/cargo mkdir ../oe-core/meta/recipes-example and then: cp recipes-devtools/rust/* ../oe-core/meta/recipes-devtools/rust cp recipes-devtools/cargo/* ../oe-core/meta/recipes-devtools/cargo cp lib/crate.py ../oe-core/meta/lib cp recipes-example/* ../oe-core/meta/recipes-example cp conf/distro/include/rust_* ../oe-core/meta/conf/distro/include/ cp classes/* ../oe-core/meta/classes/ cp recipes-core/packagegroups/packagegroup-rust-cross-canadian.bb ../oe-core/meta/recipes-core/packagegroups (From OE-Core rev: 3ed57578cca93ff1ba4e0bf3f25566e10659a2f9) Signed-off-by: Randy MacLeod <Randy.MacLeod@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
27 lines
848 B
Diff
27 lines
848 B
Diff
From 3b7e611bd58ba842470d17374c550e14bceca5c7 Mon Sep 17 00:00:00 2001
|
|
From: serge-sans-paille <sguelton@redhat.com>
|
|
Date: Tue, 10 Nov 2020 14:55:25 +0100
|
|
Subject: [PATCH] [nfc] Fix missing include
|
|
|
|
Upstream-Status: Backport [https://github.com/llvm/llvm-project/commit/b498303066a63a203d24f739b2d2e0e56dca70d1]
|
|
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
|
---
|
|
llvm/utils/benchmark/src/benchmark_register.h | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/llvm/utils/benchmark/src/benchmark_register.h b/llvm/utils/benchmark/src/benchmark_register.h
|
|
index 0705e219f2fa..4caa5ad4da07 100644
|
|
--- a/llvm/utils/benchmark/src/benchmark_register.h
|
|
+++ b/llvm/utils/benchmark/src/benchmark_register.h
|
|
@@ -1,6 +1,7 @@
|
|
#ifndef BENCHMARK_REGISTER_H
|
|
#define BENCHMARK_REGISTER_H
|
|
|
|
+#include <limits>
|
|
#include <vector>
|
|
|
|
#include "check.h"
|
|
--
|
|
2.30.1
|
|
|