You've already forked linux-packaging-mono
Imported Upstream version 4.2.1.91
Former-commit-id: 5bd0f48812d39b3636887951adc772b94ef2f5af
This commit is contained in:
committed by
Jo Shields
parent
2faab2dafa
commit
f1bb32afc3
@@ -152,10 +152,7 @@ namespace System
|
||||
stdin = new CStreamReader (OpenStandardInput (0), inputEncoding);
|
||||
} else {
|
||||
#endif
|
||||
// FULL_AOT_RUNTIME is used (instead of MONOTOUCH) since we only want this code when running on
|
||||
// iOS (simulator or devices) and *not* when running tools (e.g. btouch #12179) that needs to use
|
||||
// the mscorlib.dll shipped with Xamarin.iOS
|
||||
#if MONOTOUCH && FULL_AOT_RUNTIME
|
||||
#if MONOTOUCH
|
||||
stdout = new NSLogWriter ();
|
||||
#else
|
||||
stdout = new UnexceptionalStreamWriter (OpenStandardOutput (0), outputEncoding);
|
||||
@@ -163,7 +160,7 @@ namespace System
|
||||
#endif
|
||||
stdout = TextWriter.Synchronized (stdout);
|
||||
|
||||
#if MONOTOUCH && FULL_AOT_RUNTIME
|
||||
#if MONOTOUCH
|
||||
stderr = new NSLogWriter ();
|
||||
#else
|
||||
stderr = new UnexceptionalStreamWriter (OpenStandardError (0), outputEncoding);
|
||||
|
Reference in New Issue
Block a user