diff options
-rw-r--r-- | eclass/toolchain.eclass | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/eclass/toolchain.eclass b/eclass/toolchain.eclass index be94db869d52..f5daa73233db 100644 --- a/eclass/toolchain.eclass +++ b/eclass/toolchain.eclass @@ -2394,6 +2394,10 @@ is_go() { is_jit() { gcc-lang-supported jit || return 1 + # cross-compiler does not really support jit as it has + # to generate code for a target. On target like avr + # libgcclit.so can't link at all: bug #594572 + is_crosscompile && return 1 use_if_iuse jit } |