diff options
author | Max Krummenacher <max.oss.09@gmail.com> | 2019-01-28 16:05:49 +0100 |
---|---|---|
committer | Otavio Salvador <otavio@ossystems.com.br> | 2019-02-27 15:29:52 -0300 |
commit | 88f9ce2b2e3ed8be7ef666985151f9eacfc64e9f (patch) | |
tree | 49d01f75a021de22e40f597ec4e4b16dcfb19846 | |
parent | a9e908b038ed90f64fbe46bfbc4f16ff35c3d953 (diff) | |
download | meta-freescale-88f9ce2b2e3ed8be7ef666985151f9eacfc64e9f.tar.gz |
imx-boot: imx-mkimage: do not compile with -static
E.g. Fedora doesn't install glibc-static by default and the yocto
prerequisites do not mandate installing it. Rather than requiring
glibc-static drop linking with -static.
Works around:
| .../build/tmp/hosttools/ld: cannot find -lc
Signed-off-by: Max Krummenacher <max.krummenacher@toradex.com>
-rw-r--r-- | recipes-bsp/imx-mkimage/imx-boot_0.2.bb | 2 | ||||
-rw-r--r-- | recipes-bsp/imx-mkimage/imx-mkimage_git.bb | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/recipes-bsp/imx-mkimage/imx-boot_0.2.bb b/recipes-bsp/imx-mkimage/imx-boot_0.2.bb index 30a732fa..68492a9b 100644 --- a/recipes-bsp/imx-mkimage/imx-boot_0.2.bb +++ b/recipes-bsp/imx-mkimage/imx-boot_0.2.bb | |||
@@ -23,7 +23,7 @@ PROVIDES = "${BOOT_NAME}" | |||
23 | inherit deploy | 23 | inherit deploy |
24 | 24 | ||
25 | # Add CFLAGS with native INCDIR & LIBDIR for imx-mkimage build | 25 | # Add CFLAGS with native INCDIR & LIBDIR for imx-mkimage build |
26 | CFLAGS = "-O2 -Wall -std=c99 -static -I ${STAGING_INCDIR_NATIVE} -L ${STAGING_LIBDIR_NATIVE}" | 26 | CFLAGS = "-O2 -Wall -std=c99 -I ${STAGING_INCDIR_NATIVE} -L ${STAGING_LIBDIR_NATIVE}" |
27 | 27 | ||
28 | # This package aggregates output deployed by other packages, | 28 | # This package aggregates output deployed by other packages, |
29 | # so set the appropriate dependencies | 29 | # so set the appropriate dependencies |
diff --git a/recipes-bsp/imx-mkimage/imx-mkimage_git.bb b/recipes-bsp/imx-mkimage/imx-mkimage_git.bb index b0a2719f..5304ebf9 100644 --- a/recipes-bsp/imx-mkimage/imx-mkimage_git.bb +++ b/recipes-bsp/imx-mkimage/imx-mkimage_git.bb | |||
@@ -10,7 +10,7 @@ SECTION = "BSP" | |||
10 | 10 | ||
11 | inherit native deploy | 11 | inherit native deploy |
12 | 12 | ||
13 | CFLAGS = "-O2 -Wall -std=c99 -static -I ${STAGING_INCDIR} -L ${STAGING_LIBDIR}" | 13 | CFLAGS = "-O2 -Wall -std=c99 -I ${STAGING_INCDIR} -L ${STAGING_LIBDIR}" |
14 | 14 | ||
15 | do_compile () { | 15 | do_compile () { |
16 | cd ${S} | 16 | cd ${S} |