-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
.NET Support for macOS 11 and Windows 11 for Arm64 and x64 #22380
Comments
@richlander - There directories are not added to the PATH. << Their? |
Hi there!
|
@artl93 -- Oops. Fixed that. Thanks. @NatMarchand -- Sorry about that. Those builds are not yet released. They will be released at the same time as the .NET 6 final build. I updated to text to clarify. |
After install the new version, nothing the console CLI not works! My Mac is updated and before I install the new version 6.0.100 was everything OK |
I have never got this to work either on my M1 Mac. I need older versions in order to run tools that target those frameworks, like Tye. |
@hdamasceno @RobertSundstrom what are your symptoms/setup -- can you share more info? |
In particular, can you share which versions of .NET you have on your machine? |
Also having issues here. By the way can you make this documentation available somewhere more public? Finding this in GitHub is not the best way to go with such an important information. Reproduction Steps:
|
@danmoseley Now it seems to work. All the older versions, new installers, have been put in the x64 directory. Tye (.NET 3.1 x64 self-contained, I believe) seems to run, at least. It runs a build on my broken project The problem could have been that the necessary files were missing in /etc/dotnet. I had not deleted the directory before. I will try this further and see what does work and not work. Hopefully, all of my stuff will. The latest version of VS for Mac 2022 (Preview 3) defaults to ARM64. That is great. One annoying thing, that someone else pointed out, is that the dotnet --list-sdks command does not show any of the x64 SDKs. Better user experience and documentation is needed. Not simply dev docs on GitHub. |
How am I supposed now to run the How can I run After uninstalling all .NET Versions and reinstalling .NET 5, now it is in the x64 folder and the command Right now I will defer installing or migrating to .NET 6 until these issues are fixed or a clear guidance is provided. |
On macOS on Silicon, if have previous installs of .NET: Remove installed runtimes and SDKs: sudo rm -r /usr/local/share/dotnet
sudo rm -r /etc/dotnet
Then download the latest SDK installers:
The previous versions have been doing updated with support for multi-architecture targeting. Run the instwllers in the order of the list. From top to bottom. Check And also run: cat /etc/dotnet
The directory should contain a file for each architecture containing the SDK path of each. Now you should be able to run this code: using System.Runtime.InteropServices;
using static System.Console;
WriteLine($"Hello, {RuntimeInformation.OSArchitecture} from {RuntimeInformation.FrameworkDescription}!"); Using either of these with the expected result:
If it does not work, then you might have to run the .NET 6 (ARM64) installer again after running all of the above. Keep in mind:
Will only show .NET 6 on ARM64. The reason is that the dotnet command belongs to the Silicon/ARM64 SDK. |
I followed the instructions, it worked but not natively. You may note that :
Device details
|
@Serge-N If you want to get it running natively on .NET 6, you'll need to remove the current symbolic link as your current If it running on x64, then the RID is shown as If you change the symbolic link by removing the current one and changing it to the arm64. You can run the following commands:
|
Thanks, its working. Just what I needed. |
@chunghakngor @Serge-N -- how did you get the symlink in |
This comment is doing the right thing: #22380 (comment). I changed the formatting on the following text in the issue text to draw more attention to a key aspect:
There should be no reason to play with |
@richlander how can I run for example I get this error:
The only way I could think of fixing this without uninstalling .NET 6 is to play with By the way I am also facing similar issues for different IDE's. Can I somehow make |
My current workaround is to alias Edit: So same question here, how do we run dotnet tools for projects in x64 only SDK version?
Edit 2:
|
Thanks @Meowzz95 your workaround worked for me. I dropped the alias and the export into a bash script so I can easily set up my environment for .NET 5 when I need it. Hopefully we get a fix soon. |
This is a great read and explains the differences between the two archs and how to set them up and use them. For me, I started off installing the arm based dotnet tool and I have had the issues with the In order to get this working, I used part of the above to get me started first off remove all the .net installtions from your mac using the commands
this get's rid of all the
Then add the following path to the list
I have then got this setup to build a project in jetbrains rider by setting the following setting Feel free to tag me and I'll try and help anyone who is stuck, hope this helps 😃 |
Is this still true? I have a m1 mac and I need to use a framework that unfortunately still uses x64 libraries and needs a .net 3.1 runtime for some tasks. Everything also seems to work in VScode with OmniSharp without doing anything more. So I wonder if the quoted statement is still true, or maybe there is something that I don't quite understand. |
Just wanted to add that while these instructions worked down to 3.1, installing any lower (unsupported) versions corrupts the installation. After installing 2.1.818 I get:
This appears to happen because the older (unsupported) installers are still using A workaround I found is to use the dotnet-install bash script, after running the full installer packages for the supported versions. The following added the current 2.1 SDK to the correct location: sudo ./dotnet-install.sh --version 2.1.818 --arch x64 --install-dir /usr/local/share/dotnet/x64 |
A quick follow-up. The above workaround works for |
We didn't do anything for .NET Core 2.1. It's out of support, so wasn't important for us to special case. |
Hi, I am running an M1 with Parallels and Windows 11 Arm. As per this documentation it looks like arm64 3.1 SDK should be able to install. However, when I run the installer, I get a "This app can't run on your PC. To find a version for your PC, check with the software publisher." Any ideas why this is and how can I overcome it? |
Which installer are you using? There is no .NET Core 3.1 Windows Arm64 SDK. |
.NET Support for macOS 11 and Windows 11 for Arm64 and x64
macOS and Windows Arm64 OSes include support for x64 emulation in addition to native Arm64 execution. This means that these OSes support both Arm64 and x64 apps, and by extension the Arm64 and x64 versions of .NET. The .NET 6 release includes support for macOS and Windows Arm64 OSes, for both native Arm64 execution and x64 emulation. Unintuitively, the majority of the effort for the project wasn't adding support for Arm64 but a large set of changes to support x64 emulation. You can see those changes demonstrated in .NET 6 RC2 Update for macOS and Windows Arm64
The complex nature of the project requires us to explicitly define support for .NET SDKs and runtimes, specifically for .NET on macOS and Windows Arm64.
In terms of operating system support, x64 emulation is a recent feature. It was first introduced (respectively):
Note: macOS Arm64 is referred to by Apple as "Apple Silicon" or "M1".
Installation guidance
You are recommended to install the .NET 6 Arm64 SDK on macOS and Windows Arm64. It provides the best experience. The x64 SDK is only recommended for specific use cases, and is typically not needed, even for x64 development. The Arm64 SDK can be used for x64 development.
Note: The key missing scenario is using
dotnet test
to test with x64 emulation using the Arm64 SDK. At this time, you need to install the x64 SDK to run tests with x64 emulation.The existing x64 and Arm64 .NET Installers were never built with x64 emulation mind and would clash when installed together. They required changes to support side by side installation. As a result, the existing installers and any existing x64 installations are incompatible with the new .NET 6 Arm64 and x64 installers. Supporting upgrade here is impossible (arm64 would have to remove x64) and doing so partially would make things much more complicated for limited customer benefit.
The following applies only to macOS 11 and Windows 11 Arm64 machines.
On Windows, you can uninstall .NET via "Add or Remove Programs".
On macOS, you must manually delete a .NET installation. The easiest approach is with the following two commands (from the terminal window):
On macOS, you might need to reinstall .NET 6 Arm64 after installing .NET 6 x64 if you previously had x64 installed.
Install directories
On macOS and Windows Arm64, .NET builds install in the following directories, respectively:
Arm64 builds:
/usr/local/share/dotnet
C:\Program Files\dotnet
These directories are added to the
PATH
..NET x64 builds:
/usr/local/share/dotnet/x64
C:\Program Files\dotnet\x64
These directories are not added to the
PATH
.Supported Arm64 SDKs
The .NET 6 Arm64 SDK is the first fully-supported Arm64 SDK on macOS 11 and Windows 11 Arm64.
The Arm64 SDK and runtimes install to the
dotnet
directory, same location the x64 SDK does on an x64 machine.The following .NET Arm64 SDK builds (and later) are half-supported on Windows Arm64:
Half support:
dotnet build
) have not been updated and may have bugs that we are unlikely to fix.For example, the following command is supported to run an app via x64 emulation with the .NET 6 CLI but not the .NET 5 CLI.
Supported x64 SDKs
The .NET 6 x64 SDK will be the first fully-supported x64 SDK for both macOS 11 and Windows 11 Arm64.
The x64 SDK and runtimes install to a new
x64
directory within thedotnet
directory, creating an x64 product hive.The following .NET x64 SDK builds (and later) are half-supported on macOS Arm64:
Supported runtimes
All in-support Arm64 and x64 runtimes are supported on macOS and Windows Arm64. We had to change existing installers to install side-by-side with the Arm64 runtimes and SDKs. As a result, none of the existing builds of the runtime are supported. You need to install runtimes released in November 2021 or later.
The following runtime builds (or later) are supported on macOS and Windows Arm64:
Supported runtimes include:
Unsupported installers
All installers released before November 2021 are not supported on macOS and Windows Arm64.
Where possible, we have added installer blocks into unsupported installers so that users don't accidentally break their .NET installation.
Private installs
You can install any supported .NET version (x64, Arm64, runtime, or SDK) on your macOS and Windows Arm64 machine privately.
For example, on macOS Arm64, you can download and expand a .NET
.tar.gz
archive to a private location and it should work. The primary challenge we needed to overcome was installing .NET to the global location with the official .NET installers. If you use private installs, then you have a lot more flexibility..NET builds for Windows x86
.NET builds for Windows x86 are unaffected by these changes. They are supported on Windows x86, x64, and Arm64 OSes.
However, starting with .NET 6, you can now do the following using the .NET 6 x64 or Arm64 SDK (on Windows):
This command will launch an app as a 32-bit x86 process, from an x64 or Arm64 SDK.
Notes
Note: None of these changes apply to Linux since its model for x64 emulation on Arm64 is very different. The macOS and Windows models are very similar to one another.
Note: VS Code and Omnisharp support native architecture SDKs, only. Omnisharp does not support x64 SDKs on macOS and Windows Arm64, nor are there plans to support that.
Note: The support model is asymmetric between macOS 11 and Windows 11 Arm64, specifically for .NET 5 and .NET Core 3.1. We have various users on macOS and Windows and are helping them go through this transition to Arm64 with us and are addressing their specific needs.
The text was updated successfully, but these errors were encountered: