diff --git a/hadrian/src/Settings/Packages.hs b/hadrian/src/Settings/Packages.hs
index ab1cd8021b18ce6e4ab6ae2b599958e7ae4201cf..c29b4cdadd99f38c347f35c1a5f0270a48c97671 100644
--- a/hadrian/src/Settings/Packages.hs
+++ b/hadrian/src/Settings/Packages.hs
@@ -73,7 +73,15 @@ packageArgs = do
             , compilerStageOption ghcProfiled ? arg "--ghc-pkg-option=--force" ]
 
           , builder (Cabal Flags) ? mconcat
-            [ andM [expr ghcWithInterpreter, notStage0] `cabalFlag` "internal-interpreter"
+            -- For the ghc library, internal-interpreter only makes
+            -- sense when we're not cross compiling. For cross GHC,
+            -- external interpreter is used for loading target code
+            -- and internal interpreter is supposed to load native
+            -- code for plugins (!7377), however it's unfinished work
+            -- (#14335) and completely untested in CI for cross
+            -- backends at the moment, so we might as well disable it
+            -- for cross GHC.
+            [ andM [expr ghcWithInterpreter, notStage0, notCross] `cabalFlag` "internal-interpreter"
             , notM cross `cabalFlag` "terminfo"
             , arg "-build-tool-depends"
             , flag UseLibzstd `cabalFlag` "with-libzstd"