Skip to content

Commit

Permalink
Add support Windows Aarch64 support
Browse files Browse the repository at this point in the history
Co-authored-by: Cheng Shao <[email protected]>
  • Loading branch information
2 people authored and bgamari committed Jan 21, 2025
1 parent ab22723 commit 41f6e1a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,6 @@ ghc.mk
myhist
/dist-newstyle/
/stack.yaml.lock

# IDEs
.vscode
2 changes: 1 addition & 1 deletion includes/windows_cconv.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

#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 41f6e1a

Please sign in to comment.