From: Alexis Laferrière Date: Wed, 21 Sep 2016 16:45:54 +0000 (-0400) Subject: nitc iOS: quiet output of `xcodebuild` X-Git-Url: http://nitlanguage.org nitc iOS: quiet output of `xcodebuild` Signed-off-by: Alexis Laferrière --- diff --git a/src/platform/ios.nit b/src/platform/ios.nit index d8a68a9..0cb1ce0 100644 --- a/src/platform/ios.nit +++ b/src/platform/ios.nit @@ -168,7 +168,7 @@ private class IOSToolchain # TODO support more than the iPhone and the simulator. var compile_mode = if release then "Release" else "Debug" var args = ["sh", "-c", "cd {ios_project_root}; " + - "xcodebuild -target '{project_name}' " + + "xcodebuild -quiet -target '{project_name}' " + "-destination 'platform=iOS Simulator,name=iPhone' " + "-configuration {compile_mode} " + "ONLY_ACTIVE_ARCH=NO "+