blob: e3d7e8e3d3d8bc632447dd81dbec9df1bd5ec857 (
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
|
GO_LIBRARY()
LICENSE(BSD-3-Clause)
SRCS(
doc.go
scal.go
stubs.go
)
IF (ARCH_X86_64)
SRCS(
axpyinc_amd64.s
axpyincto_amd64.s
axpyunitary_amd64.s
axpyunitaryto_amd64.s
dotcinc_amd64.s
dotcunitary_amd64.s
dotuinc_amd64.s
dotuunitary_amd64.s
dscalinc_amd64.s
dscalunitary_amd64.s
scalUnitary_amd64.s
scalinc_amd64.s
stubs_amd64.go
)
ENDIF()
IF (ARCH_ARM64)
SRCS(stubs_noasm.go)
ENDIF()
END()
|