@@ -121,6 +121,16 @@ libc_support_library(
121
121
122
122
################################# Include Files ################################
123
123
124
+ libc_support_library (
125
+ name = "llvm_libc_macros_complex_macros" ,
126
+ hdrs = [
127
+ "include/llvm-libc-macros/cfloat128-macros.h" ,
128
+ "include/llvm-libc-macros/cfloat16-macros.h" ,
129
+ "include/llvm-libc-macros/complex-macros.h" ,
130
+ ],
131
+ deps = [":llvm_libc_macros_float_macros" ],
132
+ )
133
+
124
134
libc_support_library (
125
135
name = "llvm_libc_macros_math_macros" ,
126
136
hdrs = ["include/llvm-libc-macros/math-macros.h" ],
@@ -168,12 +178,16 @@ libc_support_library(
168
178
libc_support_library (
169
179
name = "llvm_libc_types_cfloat128" ,
170
180
hdrs = ["include/llvm-libc-types/cfloat128.h" ],
171
- deps = [":llvm_libc_macros_float_macros" ],
181
+ deps = [
182
+ ":llvm_libc_macros_complex_macros" ,
183
+ ":llvm_libc_macros_float_macros" ,
184
+ ],
172
185
)
173
186
174
187
libc_support_library (
175
188
name = "llvm_libc_types_cfloat16" ,
176
189
hdrs = ["include/llvm-libc-types/cfloat16.h" ],
190
+ deps = [":llvm_libc_macros_complex_macros" ],
177
191
)
178
192
179
193
libc_support_library (
0 commit comments