Andrew Kelley e76ce2c1d0
first class support for compiling C code
New CLI parameter: --c-source [options] [file]

It even works with `--cache on` when there are transitive dependencies.

Instead of `builder.addCExecutable`, use `builder.addExecutable` and pass
`null` for the root source file. Then use `builder.addCSourceFile`,
which takes the path to the C code, and a list of C compiler args.
Be sure to linkSystemLibrary("c") if you want libc headers to be
available.

Merge TestStep into LibExeObjStep. That was long overdue.
2019-02-25 11:45:00 -05:00
..
2019-02-17 09:17:34 +02:00
2018-12-02 18:36:18 -05:00
2019-02-11 16:07:40 -05:00
2018-09-30 17:28:35 -04:00
2019-02-17 09:17:34 +02:00
2019-02-17 00:29:58 -05:00
2018-11-13 05:08:37 -08:00
2018-11-13 05:08:37 -08:00
2019-02-18 17:22:14 +01:00