cross mingw: Enable C++ on i686

Actually the old check wasn't being hit because a slightly different
target triple was being used.
This commit is contained in:
John Ericson 2017-04-27 15:37:39 -04:00
parent 92887cb466
commit ab298085d4

View File

@ -5008,10 +5008,6 @@ with pkgs;
cross = targetPlatform; cross = targetPlatform;
crossStageStatic = false; crossStageStatic = false;
# XXX: We have troubles cross-compiling libstdc++ on MinGW (see
# <http://hydra.nixos.org/build/4268232>), so don't even try.
langCC = !(lib.systems.parse.isi686 targetPlatform.parsed &&
lib.systems.parse.isMinGW targetPlatform.parsed);
# Why is this needed? # Why is this needed?
inherit (forcedNativePackages) binutils; inherit (forcedNativePackages) binutils;
}; };