Skip to content

Commit

Permalink
Add support for Windows ARM
Browse files Browse the repository at this point in the history
Co-authored-by: Cheng Shao <[email protected]>
  • Loading branch information
GulinSS and TerrorJack committed Jan 5, 2025
1 parent ed1e4d7 commit bf598e9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cabal/src/Distribution/Compat/Environment.hs
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ setEnv_ key value = withCWString key $ \k -> withCWString value $ \v -> do
{- FOURMOLU_DISABLE -}
# if defined(i386_HOST_ARCH)
# define WINDOWS_CCONV stdcall
# elif defined(x86_64_HOST_ARCH)
# elif defined(x86_64_HOST_ARCH) || defined(aarch64_HOST_ARCH)
# define WINDOWS_CCONV ccall
# else
# error Unknown mingw32 arch
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ getExecutablePath = readSymbolicLink $ "/proc/self/exe"

# if defined(i386_HOST_ARCH)
# define WINDOWS_CCONV stdcall
# elif defined(x86_64_HOST_ARCH)
# elif defined(x86_64_HOST_ARCH) || defined(aarch64_HOST_ARCH)
# define WINDOWS_CCONV ccall
# else
# error Unknown mingw32 arch
Expand Down

0 comments on commit bf598e9

Please sign in to comment.