From d28ddc23bbf232901ae07f7a01f821ecc4b79e32 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Sun, 27 Sep 2015 11:07:38 +0100 Subject: oeqa/sdk/gcc: Fix makefile test The makefile test was hardcoding a test for gcc. In the SDK context, we need to use $(CC) to use the cross compiler. Signed-off-by: Richard Purdie --- meta/lib/oeqa/runtime/files/testsdkmakefile | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 meta/lib/oeqa/runtime/files/testsdkmakefile (limited to 'meta/lib/oeqa/runtime/files') diff --git a/meta/lib/oeqa/runtime/files/testsdkmakefile b/meta/lib/oeqa/runtime/files/testsdkmakefile new file mode 100644 index 0000000000..fb05f822f3 --- /dev/null +++ b/meta/lib/oeqa/runtime/files/testsdkmakefile @@ -0,0 +1,5 @@ +test: test.o + $(CC) -o test test.o -lm +test.o: test.c + $(CC) -c test.c + -- cgit v1.2.3