From 62a9c63f26a2d84234e399f6688a8f6a5c762842 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Alexis=20Laferri=C3=A8re?= Date: Wed, 21 Sep 2016 12:45:54 -0400 Subject: [PATCH 1/1] nitc iOS: quiet output of `xcodebuild` MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Alexis Laferrière --- src/platform/ios.nit | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 "+ -- 1.7.9.5