diff options
author | vyacheslavek <vyacheslavek@yandex-team.com> | 2024-01-19 18:02:30 +0300 |
---|---|---|
committer | vyacheslavek <vyacheslavek@yandex-team.com> | 2024-01-19 18:16:29 +0300 |
commit | 2e2b97c2fa1d8cce987480a460d6c32493b6b4f3 (patch) | |
tree | 032b7f6d2ddcbe21835c645758d649e1cecf0ab3 /contrib/go/_std_1.21/src/internal/godebugs/ya.make | |
parent | ab74556342b7c8e57be23adb26bedffd1a0d37d9 (diff) | |
download | ydb-2e2b97c2fa1d8cce987480a460d6c32493b6b4f3.tar.gz |
automation of go yamake update
ISSUE:
update gen.py and generated yamake
Diffstat (limited to 'contrib/go/_std_1.21/src/internal/godebugs/ya.make')
-rw-r--r-- | contrib/go/_std_1.21/src/internal/godebugs/ya.make | 48 |
1 files changed, 39 insertions, 9 deletions
diff --git a/contrib/go/_std_1.21/src/internal/godebugs/ya.make b/contrib/go/_std_1.21/src/internal/godebugs/ya.make index bbf68c703f..f0e8c277e3 100644 --- a/contrib/go/_std_1.21/src/internal/godebugs/ya.make +++ b/contrib/go/_std_1.21/src/internal/godebugs/ya.make @@ -1,12 +1,42 @@ GO_LIBRARY() +IF (FALSE) + MESSAGE(FATAL this shall never happen) -SRCS( - table.go -) - -GO_XTEST_SRCS(godebugs_test.go) - +ELSEIF (OS_LINUX AND ARCH_X86_64) + SRCS( + table.go + ) +ELSEIF (OS_LINUX AND ARCH_ARM64) + SRCS( + table.go + ) +ELSEIF (OS_LINUX AND ARCH_AARCH64) + SRCS( + table.go + ) +ELSEIF (OS_DARWIN AND ARCH_X86_64) + SRCS( + table.go + ) +ELSEIF (OS_DARWIN AND ARCH_ARM64) + SRCS( + table.go + ) +ELSEIF (OS_DARWIN AND ARCH_AARCH64) + SRCS( + table.go + ) +ELSEIF (OS_WINDOWS AND ARCH_X86_64) + SRCS( + table.go + ) +ELSEIF (OS_WINDOWS AND ARCH_ARM64) + SRCS( + table.go + ) +ELSEIF (OS_WINDOWS AND ARCH_AARCH64) + SRCS( + table.go + ) +ENDIF() END() - -RECURSE( -) |