examples icon indicating copy to clipboard operation
examples copied to clipboard

cpp-tutorial still not working?

Open gregestren opened this issue 3 years ago • 2 comments

https://github.com/bazelbuild/examples/issues/198 was fixed but another error was described at https://github.com/bazelbuild/examples/issues/198#issuecomment-1133588794.

TODO: diagnose. Is CI not working? Is this Windows-specific? Do we need C++ team or @bazelbuild/rules_cc input?

gregestren avatar May 23 '22 19:05 gregestren

Thank you https://github.com/wwdok for reporting.

gregestren avatar May 23 '22 19:05 gregestren

If bazel version >= 0.26.1, just change the WORKSPACE file as follows.

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive", "http_file") http_archive( name = "rules_cc", sha256 = "e75dfb05bc1e89ebbb6696cadb5e455833690009310d9dc5512151c5adb0e4e3", strip_prefix = "rules_cc-cfe68f6bc79dea602f2f6a767797f94a5904997f", urls = [ "https://github.com/bazelbuild/rules_cc/archive/cfe68f6bc79dea602f2f6a767797f94a5904997f.zip", ], )

MrRobotsAA avatar Jul 29 '22 02:07 MrRobotsAA