339 lines · plain
1add_entrypoint_object(2 stdin3 SRCS4 stdin.cpp5 HDRS6 ../stdin.h7 DEPENDS8 libc.hdr.types.FILE9)10 11add_entrypoint_object(12 stdout13 SRCS14 stdout.cpp15 HDRS16 ../stdout.h17 DEPENDS18 libc.hdr.types.FILE19)20 21add_entrypoint_object(22 stderr23 SRCS24 stderr.cpp25 HDRS26 ../stderr.h27 DEPENDS28 libc.hdr.types.FILE29)30 31add_header_library(32 gpu_file33 HDRS34 file.h35 DEPENDS36 libc.hdr.types.FILE37 libc.hdr.stdio_macros38 libc.src.__support.RPC.rpc_client39 libc.src.__support.common40 .stdin41 .stdout42 .stderr43)44 45add_header_library(46 vfprintf_utils47 HDRS48 vfprintf_utils.h49 DEPENDS50 .gpu_file51)52 53add_entrypoint_object(54 feof55 SRCS56 feof.cpp57 HDRS58 ../feof.h59 DEPENDS60 libc.hdr.types.FILE61 libc.src.__support.RPC.rpc_client62 .gpu_file63)64 65add_entrypoint_object(66 ferror67 SRCS68 ferror.cpp69 HDRS70 ../ferror.h71 DEPENDS72 libc.hdr.types.FILE73 libc.src.__support.RPC.rpc_client74 .gpu_file75)76 77add_entrypoint_object(78 fseek79 SRCS80 fseek.cpp81 HDRS82 ../fseek.h83 DEPENDS84 libc.hdr.types.FILE85 .gpu_file86)87 88add_entrypoint_object(89 ftell90 SRCS91 ftell.cpp92 HDRS93 ../ftell.h94 DEPENDS95 libc.hdr.types.FILE96 .gpu_file97)98 99add_entrypoint_object(100 fflush101 SRCS102 fflush.cpp103 HDRS104 ../fflush.h105 DEPENDS106 libc.hdr.types.FILE107 .gpu_file108)109 110add_entrypoint_object(111 clearerr112 SRCS113 clearerr.cpp114 HDRS115 ../clearerr.h116 DEPENDS117 libc.hdr.types.FILE118 libc.src.__support.RPC.rpc_client119 .gpu_file120)121 122add_entrypoint_object(123 fopen124 SRCS125 fopen.cpp126 HDRS127 ../fopen.h128 DEPENDS129 libc.hdr.types.FILE130 .gpu_file131)132 133add_entrypoint_object(134 fclose135 SRCS136 fclose.cpp137 HDRS138 ../fclose.h139 DEPENDS140 libc.hdr.types.FILE141 libc.hdr.stdio_macros142 .gpu_file143)144 145add_entrypoint_object(146 fread147 SRCS148 fread.cpp149 HDRS150 ../fread.h151 DEPENDS152 libc.hdr.types.FILE153 .gpu_file154)155 156add_entrypoint_object(157 puts158 SRCS159 puts.cpp160 HDRS161 ../puts.h162 DEPENDS163 libc.hdr.types.FILE164 .gpu_file165)166 167add_entrypoint_object(168 fputs169 SRCS170 fputs.cpp171 HDRS172 ../fputs.h173 DEPENDS174 libc.hdr.types.FILE175 .gpu_file176)177 178add_entrypoint_object(179 fwrite180 SRCS181 fwrite.cpp182 HDRS183 ../fwrite.h184 DEPENDS185 libc.hdr.types.FILE186 .gpu_file187)188 189add_entrypoint_object(190 fputc191 SRCS192 fputc.cpp193 HDRS194 ../fputc.h195 DEPENDS196 libc.hdr.types.FILE197 .gpu_file198)199 200add_entrypoint_object(201 putc202 SRCS203 putc.cpp204 HDRS205 ../putc.h206 DEPENDS207 libc.hdr.types.FILE208 .gpu_file209)210 211add_entrypoint_object(212 putchar213 SRCS214 putchar.cpp215 HDRS216 ../putchar.h217 DEPENDS218 libc.hdr.types.FILE219 .gpu_file220)221 222add_entrypoint_object(223 fgetc224 SRCS225 fgetc.cpp226 HDRS227 ../fgetc.h228 DEPENDS229 libc.hdr.types.FILE230 .gpu_file231)232 233add_entrypoint_object(234 getc235 SRCS236 getc.cpp237 HDRS238 ../getc.h239 DEPENDS240 libc.hdr.types.FILE241 .gpu_file242)243 244add_entrypoint_object(245 getchar246 SRCS247 getchar.cpp248 HDRS249 ../getchar.h250 DEPENDS251 libc.hdr.types.FILE252 .gpu_file253)254 255add_entrypoint_object(256 fgets257 SRCS258 fgets.cpp259 HDRS260 ../fgets.h261 DEPENDS262 libc.hdr.stdint_proxy263 libc.hdr.types.FILE264 .gpu_file265)266 267add_entrypoint_object(268 ungetc269 SRCS270 ungetc.cpp271 HDRS272 ../ungetc.h273 DEPENDS274 libc.hdr.types.FILE275 .gpu_file276)277 278add_entrypoint_object(279 remove280 SRCS281 remove.cpp282 HDRS283 ../remove.h284 DEPENDS285 libc.hdr.types.FILE286 .gpu_file287)288 289add_entrypoint_object(290 printf291 SRCS292 printf.cpp293 HDRS294 ../printf.h295 DEPENDS296 .vfprintf_utils297)298 299add_entrypoint_object(300 vprintf301 SRCS302 vprintf.cpp303 HDRS304 ../vprintf.h305 DEPENDS306 .vfprintf_utils307)308 309add_entrypoint_object(310 fprintf311 SRCS312 fprintf.cpp313 HDRS314 ../fprintf.h315 DEPENDS316 .vfprintf_utils317)318 319add_entrypoint_object(320 vfprintf321 SRCS322 vfprintf.cpp323 HDRS324 ../vfprintf.h325 DEPENDS326 .vfprintf_utils327)328 329add_entrypoint_object(330 rename331 SRCS332 rename.cpp333 HDRS334 ../rename.h335 DEPENDS336 libc.hdr.types.FILE337 .gpu_file338)339