diff options
Diffstat (limited to 'meta')
-rw-r--r-- | meta/classes/icecc.bbclass | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/meta/classes/icecc.bbclass b/meta/classes/icecc.bbclass index 5af764dddb..054e25c079 100644 --- a/meta/classes/icecc.bbclass +++ b/meta/classes/icecc.bbclass | |||
@@ -251,6 +251,8 @@ set_icecc_env() { | |||
251 | 251 | ||
252 | ICECC_CC="${@icc_get_and_check_tool(bb, d, "gcc")}" | 252 | ICECC_CC="${@icc_get_and_check_tool(bb, d, "gcc")}" |
253 | ICECC_CXX="${@icc_get_and_check_tool(bb, d, "g++")}" | 253 | ICECC_CXX="${@icc_get_and_check_tool(bb, d, "g++")}" |
254 | # cannot use icc_get_and_check_tool here because it assumes as without target_sys prefix | ||
255 | ICECC_WHICH_AS="${@bb.utils.which(os.getenv('PATH'), 'as')}" | ||
254 | if [ ! -x "${ICECC_CC}" -o ! -x "${ICECC_CXX}" ] | 256 | if [ ! -x "${ICECC_CC}" -o ! -x "${ICECC_CXX}" ] |
255 | then | 257 | then |
256 | bbwarn "Cannot use icecc: could not get ICECC_CC or ICECC_CXX" | 258 | bbwarn "Cannot use icecc: could not get ICECC_CC or ICECC_CXX" |
@@ -266,9 +268,12 @@ set_icecc_env() { | |||
266 | fi | 268 | fi |
267 | 269 | ||
268 | ICECC_AS="`${ICECC_CC} -print-prog-name=as`" | 270 | ICECC_AS="`${ICECC_CC} -print-prog-name=as`" |
271 | # for target recipes should return something like: | ||
272 | # /OE/tmp-eglibc/sysroots/x86_64-linux/usr/libexec/arm920tt-oe-linux-gnueabi/gcc/arm-oe-linux-gnueabi/4.8.2/as | ||
273 | # and just "as" for native, if it returns "as" in current directory (for whatever reason) use "as" from PATH | ||
269 | if [ "`dirname "${ICECC_AS}"`" = "." ] | 274 | if [ "`dirname "${ICECC_AS}"`" = "." ] |
270 | then | 275 | then |
271 | ICECC_AS="`which as`" | 276 | ICECC_AS="${ICECC_WHICH_AS}" |
272 | fi | 277 | fi |
273 | 278 | ||
274 | if [ ! -f "${ICECC_VERSION}.done" ] | 279 | if [ ! -f "${ICECC_VERSION}.done" ] |