Merge pull request #65546 from raulsntos/dotnet/macos

Fix MacOS compiler flags in .NET module
This commit is contained in:
Ignacio Roldán Etcheverry 2022-09-09 01:12:13 +02:00 committed by GitHub
commit 95c35417cd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -82,7 +82,7 @@ namespace {
String get_hostfxr_file_name() {
#if defined(WINDOWS_ENABLED) || defined(UWP_ENABLED)
return "hostfxr.dll";
#elif defined(OSX_ENABLED) || defined(IOS_ENABLED)
#elif defined(MACOS_ENABLED) || defined(IOS_ENABLED)
return "libhostfxr.dylib";
#else
return "libhostfxr.so";
@ -197,7 +197,7 @@ bool get_default_installation_dir(String &r_dotnet_root) {
r_dotnet_root = path::join(program_files_dir, "dotnet");
return true;
#elif defined(TARGET_OSX)
#elif defined(MACOS_ENABLED)
r_dotnet_root = "/usr/local/share/dotnet";
#if defined(__x86_64) || defined(__x86_64__) || defined(__amd64__) || defined(_M_X64)