Skip to content

Commit

Permalink
[utils] Fix MONO_SOLIB_EXT in mono-dl.h on Apple ARM64 (now .dylib) (#…
Browse files Browse the repository at this point in the history
…42181)

Co-authored-by: k15tfu <k15tfu@users.noreply.github.com>
  • Loading branch information
monojenkins and k15tfu committed Sep 14, 2020
1 parent 516a64c commit 6faf435
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions src/mono/mono/utils/mono-dl.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,7 @@

#ifdef TARGET_WIN32
#define MONO_SOLIB_EXT ".dll"
#elif defined(__ppc__) && defined(TARGET_MACH)
#define MONO_SOLIB_EXT ".dylib"
#elif defined(TARGET_MACH) && defined(TARGET_X86)
#define MONO_SOLIB_EXT ".dylib"
#elif defined(TARGET_MACH) && defined(TARGET_AMD64)
#elif defined(TARGET_MACH)
#define MONO_SOLIB_EXT ".dylib"
#else
#define MONO_SOLIB_EXT ".so"
Expand Down

0 comments on commit 6faf435

Please sign in to comment.