diff options
author | Khem Raj <raj.khem@gmail.com> | 2016-01-03 10:57:13 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-01-24 09:40:28 +0000 |
commit | e4510237edaaf27cd7c85ac206cebb670a18ac1e (patch) | |
tree | 3fc8237f0204a9c6829e1c4a37404326920aa1b7 /meta/recipes-rt/rt-tests/files | |
parent | 68da3901c9a778c30c174e85f029d27fc1c7b4ed (diff) | |
download | poky-e4510237edaaf27cd7c85ac206cebb670a18ac1e.tar.gz |
rt-tests: Fix build with non-gcc compilers
Makery hard sets CC to be some form of gcc, make it set only if CC
variable is absent in environment.
(From OE-Core rev: 8d83c6ad78e1f965a55c0d3f430bad2781a3eb33)
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-rt/rt-tests/files')
-rw-r--r-- | meta/recipes-rt/rt-tests/files/0001-Makefile-Set-CC-AR-variable-only-if-it-doesn-t-have-.patch | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/meta/recipes-rt/rt-tests/files/0001-Makefile-Set-CC-AR-variable-only-if-it-doesn-t-have-.patch b/meta/recipes-rt/rt-tests/files/0001-Makefile-Set-CC-AR-variable-only-if-it-doesn-t-have-.patch new file mode 100644 index 0000000000..00fcc7d722 --- /dev/null +++ b/meta/recipes-rt/rt-tests/files/0001-Makefile-Set-CC-AR-variable-only-if-it-doesn-t-have-.patch | |||
@@ -0,0 +1,30 @@ | |||
1 | From 9640dde4241e1314b8e8ea35b0c8dab0b30ae51f Mon Sep 17 00:00:00 2001 | ||
2 | From: Khem Raj <raj.khem@gmail.com> | ||
3 | Date: Sun, 3 Jan 2016 10:50:56 -0800 | ||
4 | Subject: [PATCH] Makefile: Set CC/AR variable only if it doesn't have a value | ||
5 | |||
6 | This helps it compile with clang or any other compilers besides gcc | ||
7 | |||
8 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
9 | --- | ||
10 | Upstream-Status: Submitted | ||
11 | |||
12 | Makefile | 4 ++-- | ||
13 | 1 file changed, 2 insertions(+), 2 deletions(-) | ||
14 | |||
15 | diff --git a/Makefile b/Makefile | ||
16 | index 1e4b7d1..2c2d396 100644 | ||
17 | --- a/Makefile | ||
18 | +++ b/Makefile | ||
19 | @@ -1,6 +1,6 @@ | ||
20 | VERSION = 0.96 | ||
21 | -CC=$(CROSS_COMPILE)gcc | ||
22 | -AR=$(CROSS_COMPILE)ar | ||
23 | +CC?=$(CROSS_COMPILE)gcc | ||
24 | +AR?=$(CROSS_COMPILE)ar | ||
25 | |||
26 | OBJDIR = bld | ||
27 | |||
28 | -- | ||
29 | 2.6.4 | ||
30 | |||