File tree Expand file tree Collapse file tree 4 files changed +25
-49
lines changed Expand file tree Collapse file tree 4 files changed +25
-49
lines changed Original file line number Diff line number Diff line change @@ -69,7 +69,6 @@ add_header_macro(
69
69
../libc/include/dlfcn.yaml
70
70
dlfcn.h
71
71
DEPENDS
72
- .llvm-libc-macros.dlfcn_macros
73
72
.llvm_libc_common_h
74
73
)
75
74
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
header : dlfcn.h
2
- header_template : dlfcn.h.def
2
+ standards :
3
+ - posix
3
4
macros :
5
+ # Note that macro values are quoted to keep the integer literals as
6
+ # written. Without the quotes, YAML will normalize them to minimal
7
+ # decimal, which is less readable for humans seeing the generated header.
4
8
- macro_name : RTLD_LAZY
5
- macro_header : dlfcn-macros.h
9
+ macro_value : " 0x00001 "
6
10
- macro_name : RTLD_NOW
7
- macro_header : dlfcn-macros.h
11
+ macro_value : " 0x00002 "
8
12
- macro_name : RTLD_GLOBAL
9
- macro_header : dlfcn-macros.h
13
+ macro_value : " 0x00100 "
10
14
- macro_name : RTLD_LOCAL
11
- macro_header : dlfcn-macros.h
12
- types : []
13
- enums : []
14
- objects : []
15
+ macro_value : " 0"
16
+ - macro_name : RTLD_BINDING_MASK
17
+ standards :
18
+ - gnu
19
+ macro_value : " 0x00003"
20
+ - macro_name : RTLD_NOLOAD
21
+ standards :
22
+ - gnu
23
+ macro_value : " 0x00004"
24
+ - macro_name : RTLD_DEEPBIND
25
+ standards :
26
+ - gnu
27
+ macro_value : " 0x00008"
28
+ - macro_name : RTLD_NODELETE
29
+ standards :
30
+ - gnu
31
+ macro_value : " 0x01000"
15
32
functions :
16
33
- name : dlclose
17
34
standards :
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments