Skip to content

Commit

Permalink
fix: build on Windows ARM64
Browse files Browse the repository at this point in the history
  • Loading branch information
peterh committed Aug 4, 2023
1 parent 792d892 commit 0f3979b
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions include/CLI/impl/Argv_inl.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,10 @@
#define _X86_
#elif defined(__arm__) || defined(_M_ARM) || defined(_M_ARMT)
#define _ARM_
#elif defined(__aarch64__) || defined(_M_ARM64)
#define _ARM64_
#elif defined(_M_ARM64EC)
#define _ARM64EC_
#endif
#endif

Expand Down

0 comments on commit 0f3979b

Please sign in to comment.