blob: d9a3b5c50580d9096b7edaa5fec73785da49e33f [file] [log] [blame]
jcaterf5c8c0b2018-03-27 07:22:35 -07001# Copyright 2018 The Bazel Authors. All rights reserved.
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
15# This becomes the BUILD file for @local_config_cc// under FreeBSD.
16
17package(default_visibility = ["//visibility:public"])
18
rosica5ee6d352019-08-09 07:24:36 -070019load(":cc_toolchain_config.bzl", "cc_toolchain_config")
plf8daa5142019-07-22 02:25:33 -070020load("@rules_cc//cc:defs.bzl", "cc_toolchain_suite", "cc_toolchain", "cc_library")
rosica71bc38f2019-02-04 02:39:30 -080021
jcaterf5c8c0b2018-03-27 07:22:35 -070022cc_library(
23 name = "malloc",
24)
25
jcaterf5c8c0b2018-03-27 07:22:35 -070026filegroup(
27 name = "empty",
28 srcs = [],
29)
30
31# Hardcoded toolchain, legacy behaviour.
32cc_toolchain_suite(
33 name = "toolchain",
34 toolchains = {
35 "armeabi-v7a|compiler": ":cc-compiler-armeabi-v7a",
36 "freebsd|compiler": ":cc-compiler-freebsd",
rosica547bf422018-09-06 02:10:02 -070037 "armeabi-v7a": ":cc-compiler-armeabi-v7a",
38 "freebsd": ":cc-compiler-freebsd",
jcaterf5c8c0b2018-03-27 07:22:35 -070039 },
40)
41
42cc_toolchain(
43 name = "cc-compiler-freebsd",
44 all_files = ":empty",
Googler28953cb2018-12-05 10:46:00 -080045 ar_files = ":empty",
46 as_files = ":empty",
jcaterf5c8c0b2018-03-27 07:22:35 -070047 compiler_files = ":empty",
jcaterf5c8c0b2018-03-27 07:22:35 -070048 dwp_files = ":empty",
jcaterf5c8c0b2018-03-27 07:22:35 -070049 linker_files = ":empty",
50 objcopy_files = ":empty",
jcaterf5c8c0b2018-03-27 07:22:35 -070051 strip_files = ":empty",
52 supports_param_files = 0,
hlopko1a256682019-10-24 07:01:01 -070053 toolchain_config = ":local_freebsd",
54 toolchain_identifier = "local_freebsd",
jcaterf5c8c0b2018-03-27 07:22:35 -070055)
56
rosica71bc38f2019-02-04 02:39:30 -080057cc_toolchain_config(
58 name = "local_freebsd",
59 cpu = "freebsd",
rosica71bc38f2019-02-04 02:39:30 -080060)
61
jcaterf5c8c0b2018-03-27 07:22:35 -070062toolchain(
63 name = "cc-toolchain-freebsd",
64 exec_compatible_with = [
hlopko71a213c2019-06-21 02:01:33 -070065 "@platforms//cpu:x86_64",
66 "@platforms//os:freebsd",
jcaterf5c8c0b2018-03-27 07:22:35 -070067 ],
68 target_compatible_with = [
hlopko71a213c2019-06-21 02:01:33 -070069 "@platforms//cpu:x86_64",
70 "@platforms//os:freebsd",
jcaterf5c8c0b2018-03-27 07:22:35 -070071 ],
72 toolchain = ":cc-compiler-freebsd",
73 toolchain_type = "@bazel_tools//tools/cpp:toolchain_type",
74)
75
76cc_toolchain(
77 name = "cc-compiler-armeabi-v7a",
78 all_files = ":empty",
Googler28953cb2018-12-05 10:46:00 -080079 ar_files = ":empty",
80 as_files = ":empty",
jcaterf5c8c0b2018-03-27 07:22:35 -070081 compiler_files = ":empty",
jcaterf5c8c0b2018-03-27 07:22:35 -070082 dwp_files = ":empty",
jcaterf5c8c0b2018-03-27 07:22:35 -070083 linker_files = ":empty",
84 objcopy_files = ":empty",
jcaterf5c8c0b2018-03-27 07:22:35 -070085 strip_files = ":empty",
86 supports_param_files = 0,
hlopko1a256682019-10-24 07:01:01 -070087 toolchain_config = ":stub_armeabi-v7a",
88 toolchain_identifier = "stub_armeabi-v7a",
jcaterf5c8c0b2018-03-27 07:22:35 -070089)
90
rosica71bc38f2019-02-04 02:39:30 -080091cc_toolchain_config(
92 name = "stub_armeabi-v7a",
93 cpu = "armeabi-v7a",
rosica71bc38f2019-02-04 02:39:30 -080094)
95
jcaterf5c8c0b2018-03-27 07:22:35 -070096toolchain(
97 name = "cc-toolchain-armeabi-v7a",
98 exec_compatible_with = [
hlopko71a213c2019-06-21 02:01:33 -070099 "@platforms//cpu:arm",
jcaterf5c8c0b2018-03-27 07:22:35 -0700100 ],
101 target_compatible_with = [
hlopko71a213c2019-06-21 02:01:33 -0700102 "@platforms//cpu:arm",
103 "@platforms//os:android",
jcaterf5c8c0b2018-03-27 07:22:35 -0700104 ],
105 toolchain = ":cc-compiler-armeabi-v7a",
106 toolchain_type = "@bazel_tools//tools/cpp:toolchain_type",
107)
108
jcaterf5c8c0b2018-03-27 07:22:35 -0700109filegroup(
110 name = "link_dynamic_library",
111 srcs = ["link_dynamic_library.sh"],
112)