Skip to content

Commit

Permalink
[ SDL ] Fix compile error building for Windows/ARM64 on Visual Studio…
Browse files Browse the repository at this point in the history
… 2017 Win10 SDK 10.0.18362.0 which requires ar,74intr.h/arm64_neon.h header instead of armintr.h/arm_neon.h for intrinsics.

@saml
  • Loading branch information
slouken committed Aug 8, 2019
1 parent c76f0f5 commit cbdee4d
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
Empty file modified Xcode-iOS/SDL/SDL.xcodeproj/project.pbxproj 100644 → 100755
Empty file.
Empty file modified Xcode/SDL/SDL.xcodeproj/project.pbxproj 100644 → 100755
Empty file.
4 changes: 2 additions & 2 deletions include/SDL_cpuinfo.h
Expand Up @@ -73,8 +73,8 @@
# define __ARM_NEON 1 /* Set __ARM_NEON so that it can be used elsewhere, at compile time */
# endif
# if defined (_M_ARM64)
# include <armintr.h>
# include <arm_neon.h>
# include <arm64intr.h>
# include <arm64_neon.h>
# define __ARM_NEON 1 /* Set __ARM_NEON so that it can be used elsewhere, at compile time */
# endif
# endif
Expand Down

0 comments on commit cbdee4d

Please sign in to comment.