Welcome to mirror list, hosted at ThFree Co, Russian Federation.

GlobalizationMode.Unix.cs « Globalization « System « src « System.Private.CoreLib « src - github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: eaa126b015720f08009e25344f28d4f2395f4104 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.

namespace System.Globalization
{
    internal static partial class GlobalizationMode
    {
        private static bool GetGlobalizationInvariantMode()
        {
            // CORERT-TODO: Enable System.Globalization.Invariant switch
            // bool invariantEnabled = CLRConfig.GetBoolValue(c_InvariantModeConfigSwitch);
            bool invariantEnabled = false;
            if (!invariantEnabled)
            {
                // WASM TODO: There's no WASM build of LibICU. We may be able to cross-compile it ourselves.
#if WASM
                return true;
#else
                if (Interop.Globalization.LoadICU() == 0)
                {
                    string message = "Couldn't find a valid ICU package installed on the system. " + 
                                    "Set the configuration flag System.Globalization.Invariant to true if you want to run with no globalization support.";
                    Environment.FailFast(message);
                }
#endif // !WASM
            }
            return invariantEnabled;
        }
    }
}