| 280 | } |
| 281 | |
| 282 | void CompileOptions::read_output(StringStream &output, Process &pr) |
| 283 | { |
| 284 | u32 nbr = 0; |
| 285 | char msg[512]; |
| 286 | while (pr.read(&nbr, msg, sizeof(msg) - 1) != NULL) { |
| 287 | msg[nbr] = '\0'; |
| 288 | output << msg; |
| 289 | } |
| 290 | } |
| 291 | |
| 292 | const char *CompileOptions::platform_name() |
| 293 | { |
no test coverage detected