aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/go/_std_1.21/src/runtime/internal/syscall/ya.make
blob: 2174a67498d96512ea2bf8c8276b3f0b2dc54e5c (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()

BUILD_ONLY_IF(
    WARNING
    OS_LINUX
)

IF (OS_LINUX)
    SRCS(
        syscall_linux.go
    )

    GO_XTEST_SRCS(syscall_linux_test.go)
ENDIF()

IF (OS_LINUX AND ARCH_X86_64)
    SRCS(
        asm_linux_amd64.s
        defs_linux_amd64.go
    )
ENDIF()

IF (OS_LINUX AND ARCH_ARM64)
    SRCS(
        asm_linux_arm64.s
        defs_linux_arm64.go
    )
ENDIF()

END()

RECURSE(
)