[yocto] [PATCH] example-recipe: Fix LDFLAGS compilation issue on newly created recipes
Alejandro Hernandez
alejandro.hernandez at linux.intel.com
Wed Nov 23 15:27:21 PST 2016
Signed-off-by: Alejandro Hernandez <alejandro.hernandez at linux.intel.com>
---
.../target/arch/layer/recipes-example/example/example-recipe-0.1.bb | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/scripts/lib/bsp/substrate/target/arch/layer/recipes-example/example/example-recipe-0.1.bb b/scripts/lib/bsp/substrate/target/arch/layer/recipes-example/example/example-recipe-0.1.bb
index 5fbf594..e534d36 100644
--- a/scripts/lib/bsp/substrate/target/arch/layer/recipes-example/example/example-recipe-0.1.bb
+++ b/scripts/lib/bsp/substrate/target/arch/layer/recipes-example/example/example-recipe-0.1.bb
@@ -14,7 +14,7 @@ SRC_URI = "file://helloworld.c"
S = "${WORKDIR}"
do_compile() {
- ${CC} helloworld.c -o helloworld
+ ${CC} ${LDFLAGS} helloworld.c -o helloworld
}
do_install() {
--
2.10.1
More information about the yocto
mailing list