From a4c7655a8a55226263265db8323a0d1376491c89 Mon Sep 17 00:00:00 2001 From: Hidenori Matsubayashi Date: Fri, 12 Aug 2022 09:47:56 +0900 Subject: [PATCH] Fix build command option (#111) Signed-off-by: Hidenori Matsubayashi --- lib/commands/build.dart | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/lib/commands/build.dart b/lib/commands/build.dart index caba7dd..cdf34ba 100644 --- a/lib/commands/build.dart +++ b/lib/commands/build.dart @@ -48,10 +48,9 @@ class BuildPackageCommand extends BuildSubCommand ); argParser.addOption( 'target-compiler-triple', - defaultsTo: 'aarch64-linux-gnu', + defaultsTo: null, help: 'Target compiler triple for which the app is compiled. ' - 'This option is used only if the target architectures is ' - 'arm64 (for cross-building for x64 on arm64).', + 'e.g. aarch64-linux-gnu', ); argParser.addOption( 'target-sysroot',