commit | 56897752c092569bba02da18b945033bcb42f2ad | [log] [tgz] |
---|---|---|
author | Googler <pcloudy@google.com> | Thu May 06 08:44:28 2021 -0700 |
committer | Copybara-Service <copybara-worker@google.com> | Thu May 06 08:44:55 2021 -0700 |
tree | 55468a55c7ec069333bba0c31d56fb233b37dc7a | |
parent | c612c9581b9e740a49ed4c006edb93912c8ab205 [diff] |
Remove restriction on generate_pdb_file to be only used in dbg and fastbuild mode Users may want to build in opt mode and still want the pdb file to be a linking action output. See https://github.com/bazelbuild/rules_cc/issues/94#issuecomment-828254895 RELNOTES: None PiperOrigin-RevId: 372351216 Change-Id: I1b8a8709014deb4abdb13db387e185cd08f408d7
This repository contains Starlark implementation of C++ rules in Bazel.
The rules are being incrementally converted from their native implementations in the Bazel source tree.
For the list of C++ rules, see the Bazel documentation.
There is no need to use rules from this repository just yet. If you want to use rules_cc
anyway, add the following to your WORKSPACE
file:
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") http_archive( name = "rules_cc", urls = ["https://github.com/bazelbuild/rules_cc/archive/TODO"], sha256 = "TODO", )
Then, in your BUILD
files, import and use the rules:
load("@rules_cc//cc:defs.bzl", "cc_library") cc_library( ... )
This repository also contains migration tools that can be used to migrate your project for Bazel incompatible changes.
Script that migrates legacy crosstool fields into features (incompatible flag, tracking issue).
TLDR:
bazel run @rules_cc//tools/migration:legacy_fields_migrator -- \ --input=my_toolchain/CROSSTOOL \ --inline
Bazel and rules_cc
are the work of many contributors. We appreciate your help!
To contribute, please read the contribution guidelines: CONTRIBUTING.md.
Note that the rules_cc
use the GitHub issue tracker for bug reports and feature requests only. For asking questions see:
rules_cc
mailing list#cc
on slack.bazel.build