Re: [ccache] [PATCH v4] add support for '@' parameters

2012-08-01 Thread Joel Rosdahl
On 31 July 2012 02:50, Andrew Boie wrote: > args_insert() added to insert a set of arguments into a position within > another set of arguments. Looks OK. > args_init_from_string() has been improved so that any character may be > included by prefixing that character with a backslash, and support

Re: [ccache] [PATCH v4] add support for '@' parameters

2012-07-30 Thread Boie, Andrew P
Changes from patch set 3: - args_insert() now consumes the arguments to be inserted, the caller doesn't need to subsequently free it. Avoids some strdups - test cases and args_insert use in ccache.c updated to reflect new semantics Andrew > -Original Message- > From: Boie, Andrew P > Se

[ccache] [PATCH v4] add support for '@' parameters

2012-07-30 Thread Andrew Boie
From: "Boie, Andrew P" These indicate to the compiler that additional command line options should be read from a text file. If encountered, read the file, tokenize any arguments, and if any are found, do an in-place replacement of the '@' parameter with the arguments within the file. args_insert