blob: 46b7e68a11f8d1ad4b592fc457b730a1e09333ad (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
GO_LIBRARY()
SRCS(
bytealg.go
compare_native.go
count_native.go
equal_generic.go
equal_native.go
index_native.go
indexbyte_native.go
)
IF (ARCH_X86_64)
SRCS(
compare_amd64.s
count_amd64.s
equal_amd64.s
index_amd64.go
index_amd64.s
indexbyte_amd64.s
)
ENDIF()
IF (ARCH_ARM64)
SRCS(
compare_arm64.s
count_arm64.s
equal_arm64.s
index_arm64.go
index_arm64.s
indexbyte_arm64.s
)
ENDIF()
END()
|