diff options
author | svidyuk <svidyuk@yandex-team.com> | 2023-09-26 14:42:14 +0300 |
---|---|---|
committer | svidyuk <svidyuk@yandex-team.com> | 2023-09-26 15:52:56 +0300 |
commit | 0202414407538a77d8f900c5e4440290d7ebc812 (patch) | |
tree | ad3a8129078be6a7118d942fecc2f1c652ed5aa3 /build/platform/clang | |
parent | a5d2f065b28f129c560fa5aefa27a1b1e9fb1364 (diff) | |
download | ydb-0202414407538a77d8f900c5e4440290d7ebc812.tar.gz |
Keep only exported clang versions in opensource build
Diffstat (limited to 'build/platform/clang')
-rw-r--r-- | build/platform/clang/clang12.json | 19 | ||||
-rw-r--r-- | build/platform/clang/clang16.json | 19 | ||||
-rw-r--r-- | build/platform/clang/ya.make | 6 |
3 files changed, 4 insertions, 40 deletions
diff --git a/build/platform/clang/clang12.json b/build/platform/clang/clang12.json deleted file mode 100644 index 9e3f9bb2ad..0000000000 --- a/build/platform/clang/clang12.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "by_platform": { - "darwin-arm64": { - "uri": "sbr:2813906025" - }, - "darwin-x86_64": { - "uri": "sbr:2813915651" - }, - "linux-ppc64le": { - "uri": "sbr:2813921697" - }, - "linux-x86_64": { - "uri": "sbr:2813926943" - }, - "win32-x86_64": { - "uri": "sbr:2819507345" - } - } -} diff --git a/build/platform/clang/clang16.json b/build/platform/clang/clang16.json deleted file mode 100644 index 6bbc732af4..0000000000 --- a/build/platform/clang/clang16.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "by_platform": { - "darwin-arm64": { - "uri": "sbr:4597325249" - }, - "darwin-x86_64": { - "uri": "sbr:4597414760" - }, - "linux-aarch64": { - "uri": "sbr:4598408410" - }, - "linux-x86_64": { - "uri": "sbr:4597592901" - }, - "win32-x86_64": { - "uri": "sbr:4597657641" - } - } -} diff --git a/build/platform/clang/ya.make b/build/platform/clang/ya.make index a76c9a6356..a4d14ff898 100644 --- a/build/platform/clang/ya.make +++ b/build/platform/clang/ya.make @@ -1,9 +1,11 @@ RESOURCES_LIBRARY() DECLARE_EXTERNAL_HOST_RESOURCES_BUNDLE_BY_JSON(CLANG11 clang11.json) -DECLARE_EXTERNAL_HOST_RESOURCES_BUNDLE_BY_JSON(CLANG12 clang12.json) DECLARE_EXTERNAL_HOST_RESOURCES_BUNDLE_BY_JSON(CLANG14 clang14.json) -DECLARE_EXTERNAL_HOST_RESOURCES_BUNDLE_BY_JSON(CLANG16 clang16.json) +IF (NOT OPENSOURCE) + DECLARE_EXTERNAL_HOST_RESOURCES_BUNDLE_BY_JSON(CLANG12 clang12.json) + DECLARE_EXTERNAL_HOST_RESOURCES_BUNDLE_BY_JSON(CLANG16 clang16.json) +ENDIF() # This is the default clang to be used in llvm-version-independent cases DECLARE_EXTERNAL_HOST_RESOURCES_BUNDLE_BY_JSON(CLANG clang14.json) |