1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291
|
# Helper function to set up dependencies if they exist.
function(add_macro_header name)
cmake_parse_arguments(
"MACRO_HEADER"
"" # Optional arguments
"HDR" # Single value arguments
"DEPENDS" # Multi-value arguments
${ARGN}
)
if(TARGET libc.include.llvm-libc-macros.${LIBC_TARGET_OS}.${name})
add_header(
${name}
HDR
${MACRO_HEADER_HDR}
DEPENDS
.${LIBC_TARGET_OS}.${name}
${MACRO_HEADER_DEPENDS}
)
else()
add_header(
${name}
HDR
${MACRO_HEADER_HDR}
DEPENDS
${MACRO_HEADER_DEPENDS}
)
endif()
endfunction(add_macro_header)
if(EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/${LIBC_TARGET_OS})
add_subdirectory(${CMAKE_CURRENT_SOURCE_DIR}/${LIBC_TARGET_OS})
endif()
add_macro_header(
assert_macros
HDR
assert-macros.h
)
add_macro_header(
error_number_macros
HDR
error-number-macros.h
)
add_macro_header(
generic_error_number_macros
HDR
generic-error-number-macros.h
)
add_macro_header(
null_macro
HDR
null-macro.h
)
add_macro_header(
fcntl_macros
HDR
fcntl-macros.h
)
add_macro_header(
features_macros
HDR
features-macros.h
)
add_macro_header(
fenv_macros
HDR
fenv-macros.h
)
add_macro_header(
file_seek_macros
HDR
file-seek-macros.h
)
add_macro_header(
stdint_macros
HDR
stdint-macros.h
)
add_macro_header(
float_macros
HDR
float-macros.h
)
add_macro_header(
float16_macros
HDR
float16-macros.h
)
add_macro_header(
limits_macros
HDR
limits-macros.h
)
add_macro_header(
link_macros
HDR
link-macros.h
)
add_macro_header(
math_macros
HDR
math-macros.h
DEPENDS
.limits_macros
)
add_macro_header(
math_function_macros
HDR
math-function-macros.h
)
add_macro_header(
offsetof_macro
HDR
offsetof-macro.h
)
add_macro_header(
containerof_macro
HDR
containerof-macro.h
DEPENDS
.offsetof_macro
)
add_macro_header(
sched_macros
HDR
sched-macros.h
)
add_macro_header(
signal_macros
HDR
signal-macros.h
)
add_macro_header(
stdbit_macros
HDR
stdbit-macros.h
)
add_macro_header(
stdio_macros
HDR
stdio-macros.h
)
add_macro_header(
stdlib_macros
HDR
stdlib-macros.h
)
add_macro_header(
sys_auxv_macros
HDR
sys-auxv-macros.h
)
add_macro_header(
sys_epoll_macros
HDR
sys-epoll-macros.h
)
add_macro_header(
sys_ioctl_macros
HDR
sys-ioctl-macros.h
)
add_macro_header(
sys_stat_macros
HDR
sys-stat-macros.h
)
add_macro_header(
sys_mman_macros
HDR
sys-mman-macros.h
)
add_macro_header(
sys_queue_macros
HDR
sys-queue-macros.h
DEPENDS
.null_macro
.containerof_macro
)
add_macro_header(
sys_random_macros
HDR
sys-random-macros.h
)
add_macro_header(
sys_resource_macros
HDR
sys-resource-macros.h
)
add_macro_header(
sys_select_macros
HDR
sys-select-macros.h
)
add_macro_header(
sys_socket_macros
HDR
sys-socket-macros.h
)
add_macro_header(
sys_time_macros
HDR
sys-time-macros.h
)
add_macro_header(
sys_wait_macros
HDR
sys-wait-macros.h
)
add_macro_header(
termios_macros
HDR
termios-macros.h
)
add_macro_header(
time_macros
HDR
time-macros.h
)
add_macro_header(
unistd_macros
HDR
unistd-macros.h
)
add_macro_header(
wchar_macros
HDR
wchar-macros.h
)
add_macro_header(
inttypes_macros
HDR
inttypes-macros.h
)
add_macro_header(
stdfix_macros
HDR
stdfix-macros.h
)
add_macro_header(
stdckdint_macros
HDR
stdckdint-macros.h
)
add_macro_header(
dlfcn_macros
HDR
dlfcn-macros.h
)
|