blob: 1477aeedf5f815fac72e856c512aa226456a4249 [file]
# Copyright 2026 The Fuchsia Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
load("@platforms//host:constraints.bzl", "HOST_CONSTRAINTS")
load("@rules_cc//cc:defs.bzl", "cc_library")
package(default_visibility = ["//visibility:public"])
cc_library(
name = "buildid",
srcs = [
"linux.cc",
],
hdrs = ["buildid.h"],
copts = [
"-Wno-conversion",
],
target_compatible_with = HOST_CONSTRAINTS,
alwayslink = True,
)