Skip to content

Commit b09b32a

Browse files
committed
Support aarch64 architecture
1 parent 533ab1a commit b09b32a

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cmake_minimum_required(VERSION 3.5)
22

33
project(alacenc
4-
VERSION 0.2.0
4+
VERSION 0.3.0
55
DESCRIPTION "command-line ALAC encoder"
66
LANGUAGES C CXX
77
)

vendor/alac/codec/EndianPortable.c

+2
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,8 @@
3535
#define TARGET_RT_LITTLE_ENDIAN 1
3636
#elif defined(__arm64__)
3737
#define TARGET_RT_LITTLE_ENDIAN 1
38+
#elif defined(__aarch64__)
39+
#define TARGET_RT_LITTLE_ENDIAN 1
3840
#elif defined (TARGET_OS_WIN32)
3941
#define TARGET_RT_LITTLE_ENDIAN 1
4042
#endif

0 commit comments

Comments
 (0)