├── LICENSE └── README.md /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2020 gsvm 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | Loongson .NET Core Home 2 | =========================== 3 | 4 | The [gsvm/loongson-dotnet](https://github.com/gsvm/loongson-dotnet) repository is a good starting point for Loongson's port of .NET Core. 5 | 6 | We hope to implement .NET Core 3.1 of Loongson/MIPS Port first, then upgrade to upstream [dotnet/runtime](https://github.com/dotnet/runtime) . 7 | 8 | This repository may be temporary, but may exist for a long time. Our hope is to merge into upstream. 9 | 10 | 11 | ## Current Status 12 | 13 | Nearly all tests in [CoreCLR](https://github.com/gsvm/coreclr) have been passed. We are debugging tests in [CoreFX](https://github.com/gsvm/corefx) and [ASP.NET Core](https://github.com/dotnet/aspnetcore), and tests with various parameters. 14 | 15 | 16 | ## How to Use MIPS Port of .NET Core 17 | 18 | We have released [.NET Core MIPS64 Port](http://www.loongnix.org/index.php/dotnet). 19 | 20 | 21 | ## How to Engage, Contribute and Provide Feedback 22 | 23 | We encourage contributions, both issues and PRs. All contributions and suggestions are greatly welcomed. If you have any problems or want any support, feel free to file an issue or contact us via email to aoqi@loongson.cn. 24 | 25 | ## Useful Link 26 | 27 | [Who is Loongson](http://www.loongson.cn/) 28 | 29 | [Open-sourcing CoreCLR MIPS64 Port](https://github.com/dotnet/runtime/issues/38069) 30 | 31 | [Guide for porting .NET to a new processor architecture](https://github.com/dotnet/runtime/blob/master/docs/design/coreclr/botr/guide-for-porting.md) 32 | 33 | ["arch-mips64" label](https://github.com/dotnet/runtime/labels/arch-mips64) 34 | 35 | [Debugging CoreCLR on Loongson (Chinese)](http://ask.loongnix.org/?/article/689) 36 | --------------------------------------------------------------------------------