3630f62053
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.
23 lines
479 B
Python
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",
|
|
)
|