File tree Expand file tree Collapse file tree 2 files changed +14
-13
lines changed Expand file tree Collapse file tree 2 files changed +14
-13
lines changed Original file line number Diff line number Diff line change @@ -187,6 +187,8 @@ set(TARGET_LIBC_ENTRYPOINTS
187
187
libc.src.stdio.sprintf
188
188
libc.src.stdio.vsnprintf
189
189
libc.src.stdio.vsprintf
190
+ libc.src.stdio.asprintf
191
+ libc.src.stdio.vasprintf
190
192
libc.src.stdio.sscanf
191
193
libc.src.stdio.vsscanf
192
194
libc.src.stdio.feof
Original file line number Diff line number Diff line change @@ -99,7 +99,6 @@ add_object_library(
99
99
libc.src.__support.uint128
100
100
)
101
101
102
-
103
102
add_object_library (
104
103
printf_main
105
104
SRCS
@@ -114,6 +113,18 @@ add_object_library(
114
113
libc.src.__support.arg_list
115
114
)
116
115
116
+ add_header_library (
117
+ vasprintf_internal
118
+ HDRS
119
+ vasprintf_internal.h
120
+ DEPENDS
121
+ libc.src.__support.arg_list
122
+ libc.src.stdio.printf_core.printf_main
123
+ libc.src.stdio.printf_core.writer
124
+ libc.src.stdlib.malloc
125
+ libc.src.stdlib.realloc
126
+ )
127
+
117
128
if (NOT (TARGET libc.src.__support.File.file ) AND LLVM_LIBC_FULL_BUILD )
118
129
# Not all platforms have a file implementation. If file is unvailable, and a
119
130
# full build is requested, then we must skip all file based printf sections.
@@ -132,15 +143,3 @@ add_header_library(
132
143
libc.src.stdio.printf_core.writer
133
144
${use_system_file}
134
145
)
135
-
136
- add_header_library (
137
- vasprintf_internal
138
- HDRS
139
- vasprintf_internal.h
140
- DEPENDS
141
- libc.src.__support.arg_list
142
- libc.src.stdio.printf_core.printf_main
143
- libc.src.stdio.printf_core.writer
144
- libc.src.stdlib.malloc
145
- libc.src.stdlib.realloc
146
- )
You can’t perform that action at this time.
0 commit comments