This commit is contained in:
Benjamin Kramer
2024-10-18 12:28:15 +02:00
parent 5c37316b54
commit c7d1163554

View File

@@ -103,6 +103,17 @@ libc_support_library(
deps = [":llvm_libc_macros_float_macros"],
)
libc_support_library(
name = "llvm_libc_types_cfloat128",
hdrs = ["include/llvm-libc-types/cfloat128.h"],
deps = [":llvm_libc_macros_float_macros"],
)
libc_support_library(
name = "llvm_libc_types_cfloat16",
hdrs = ["include/llvm-libc-types/cfloat16.h"],
)
libc_support_library(
name = "llvm_libc_macros_fcntl_macros",
hdrs = ["include/llvm-libc-macros/linux/fcntl-macros.h"],
@@ -268,6 +279,16 @@ libc_support_library(
hdrs = ["src/__support/macros/properties/os.h"],
)
libc_support_library(
name = "__support_macros_properties_complex_types",
hdrs = ["src/__support/macros/properties/complex_types.h"],
deps = [
":__support_macros_properties_types",
":llvm_libc_types_cfloat128",
":llvm_libc_types_cfloat16",
],
)
libc_support_library(
name = "__support_macros_properties_types",
hdrs = ["src/__support/macros/properties/types.h"],
@@ -493,6 +514,7 @@ libc_support_library(
deps = [
":__support_macros_attributes",
":__support_macros_config",
":__support_macros_properties_complex_types",
":__support_macros_properties_types",
":llvm_libc_macros_stdfix_macros",
],