mirror of
https://github.com/github/codeql.git
synced 2025-12-18 01:33:15 +01:00
* do not mention any more that one might make analysis happen on Linux with advanced setup * say that outright Swift analysis is only supported on macOS, not just autobuild. * emit the error diagnostics even for traced builds, not only for autobuilds (by using a dummy `extractor` executable).
13 lines
296 B
Python
13 lines
296 B
Python
load("//swift:rules.bzl", "swift_cc_binary")
|
|
|
|
swift_cc_binary(
|
|
name = "incompatible-os",
|
|
srcs = ["IncompatibleOs.cpp"],
|
|
# No restrictions (Windows allowed)
|
|
target_compatible_with = [],
|
|
visibility = ["//swift:__subpackages__"],
|
|
deps = [
|
|
"//swift/logging",
|
|
],
|
|
)
|