Skip to content

Commit f44233d

Browse files
authored
* simctl launch: switched to --console-pty to workaround 16Kb PIPE buffer limitation on MacOSx (#811)
1 parent 40871b0 commit f44233d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler/compiler/src/main/java/org/robovm/compiler/target/ios/SimLauncherProcess.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ public void run() {
142142
List<Object> args = new ArrayList<>();
143143
args.add("simctl");
144144
args.add("launch");
145-
args.add("--console");
145+
args.add("--console-pty");
146146
args.add(deviceType.getUdid());
147147
args.add(bundleId);
148148
args.addAll(arguments);

0 commit comments

Comments
 (0)