blob: 62490a6f9cd751a80c02b8dc3b6f0c733cccc083 (
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
|
GO_LIBRARY()
IF (FALSE)
MESSAGE(FATAL this shall never happen)
ELSEIF (OS_LINUX AND ARCH_X86_64)
SRCS(
asm_linux_amd64.s
defs_linux_amd64.go
syscall_linux.go
)
ELSEIF (OS_LINUX AND ARCH_ARM64)
SRCS(
asm_linux_arm64.s
defs_linux_arm64.go
syscall_linux.go
)
ELSEIF (OS_LINUX AND ARCH_AARCH64)
SRCS(
asm_linux_arm64.s
defs_linux_arm64.go
syscall_linux.go
)
ENDIF()
END()
|