We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a1955aa commit 438a14cCopy full SHA for 438a14c
pkg/dartdev/lib/src/commands/compile.dart
@@ -467,7 +467,10 @@ class CompileNativeCommand extends CompileSubcommandCommand {
467
static const String exeCmdName = 'exe';
468
static const String aotSnapshotCmdName = 'aot-snapshot';
469
static final supportedTargetPlatforms = <Target>{
470
+ // ARM cross-compilation is not supported on Windows currently.
471
+ if (!Platform.isWindows) Target.linuxArm,
472
Target.linuxArm64,
473
+ Target.linuxRiscv64,
474
Target.linuxX64
475
};
476
0 commit comments