mirror of
https://git.yoctoproject.org/poky
synced 2026-06-02 01:19:52 +00:00
rt-tests, hwlatdetect: upgrade to 2.0
0001-Makefile-Set-CC-AR-variable-only-if-it-doesn-t-have-.patch has been merged upstream (From OE-Core rev: 2b6c5cc41c55e11509d5c1268dc1baab0a975d59) Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
9e29916a9f
commit
2d97d69780
-30
@@ -1,30 +0,0 @@
|
|||||||
From 9640dde4241e1314b8e8ea35b0c8dab0b30ae51f Mon Sep 17 00:00:00 2001
|
|
||||||
From: Khem Raj <raj.khem@gmail.com>
|
|
||||||
Date: Sun, 3 Jan 2016 10:50:56 -0800
|
|
||||||
Subject: [PATCH] Makefile: Set CC/AR variable only if it doesn't have a value
|
|
||||||
|
|
||||||
This helps it compile with clang or any other compilers besides gcc
|
|
||||||
|
|
||||||
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
|
||||||
---
|
|
||||||
Upstream-Status: Submitted
|
|
||||||
|
|
||||||
Makefile | 4 ++--
|
|
||||||
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
||||||
|
|
||||||
diff --git a/Makefile b/Makefile
|
|
||||||
index 1e4b7d1..2c2d396 100644
|
|
||||||
--- a/Makefile
|
|
||||||
+++ b/Makefile
|
|
||||||
@@ -1,6 +1,6 @@
|
|
||||||
VERSION = 0.96
|
|
||||||
-CC=$(CROSS_COMPILE)gcc
|
|
||||||
-AR=$(CROSS_COMPILE)ar
|
|
||||||
+CC?=$(CROSS_COMPILE)gcc
|
|
||||||
+AR?=$(CROSS_COMPILE)ar
|
|
||||||
|
|
||||||
OBJDIR = bld
|
|
||||||
|
|
||||||
--
|
|
||||||
2.6.4
|
|
||||||
|
|
||||||
@@ -1,6 +1,5 @@
|
|||||||
# Version v0.96
|
# Version v0.96
|
||||||
PV = "0.96"
|
SRCREV = "e1b1537a20b35af75a49bf55dcf70296f8a62467"
|
||||||
SRCREV = "24f8c0175e04bab78e7555698e34d7002b01c87f"
|
|
||||||
|
|
||||||
SRC_URI = "git://git.kernel.org/pub/scm/utils/rt-tests/rt-tests.git"
|
SRC_URI = "git://git.kernel.org/pub/scm/utils/rt-tests/rt-tests.git"
|
||||||
|
|
||||||
|
|||||||
+1
-1
@@ -10,7 +10,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe \
|
|||||||
require rt-tests.inc
|
require rt-tests.inc
|
||||||
inherit ptest
|
inherit ptest
|
||||||
|
|
||||||
SRC_URI += "file://0001-Makefile-Set-CC-AR-variable-only-if-it-doesn-t-have-.patch \
|
SRC_URI += " \
|
||||||
file://run-ptest \
|
file://run-ptest \
|
||||||
file://rt_bmark.py \
|
file://rt_bmark.py \
|
||||||
"
|
"
|
||||||
Reference in New Issue
Block a user