1
hermetic_cc_toolchain/test/windows/BUILD
Motiejus Jakštys 3630f62053 rules/ remove run_under
rules/ were never meant to be added to the release. Now that we are not
*running* multi-arch binaries, we can remove the infrastructure that was
necessary to do so.

I may get back to this -- but we need to dust quite a bit off before
that happens.
2023-04-24 10:13:53 +03:00

23 lines
479 B
Python

# Copyright 2023 Uber Technologies, Inc.
# Licensed under the MIT License
load("@hermetic_cc_toolchain//rules:platform.bzl", "platform_binary", "platform_test")
cc_binary(
name = "winver",
srcs = ["main.c"],
tags = ["manual"],
)
platform_binary(
name = "winver_windows_amd64",
src = "winver",
platform = "//platform:windows_amd64",
)
platform_binary(
name = "winver_windows_arm64",
src = "winver",
platform = "//platform:windows_arm64",
)