]> git.ozlabs.org Git - ccan/blob - tools/tools.h
2092042f7be6fc4606055965a35248b0c9950ef3
[ccan] / tools / tools.h
1 #ifndef CCAN_TOOLS_H
2 #define CCAN_TOOLS_H
3 #include <stdbool.h>
4
5 #define IDENT_CHARS     "ABCDEFGHIJKLMNOPQRSTUVWXYZ" \
6                         "abcdefghijklmnopqrstuvwxyz" \
7                         "01234567889_"
8
9 #define SPACE_CHARS     " \f\n\r\t\v"
10
11 /* FIXME: Nested functions break with -Wmissing-prototypes -Wmissing-declarations */
12 #define CFLAGS "-g -Wall -Wundef -Wstrict-prototypes -Wold-style-definition -Werror -I../.."
13
14 /* This actually compiles and runs the info file to get dependencies. */
15 char **get_deps(const void *ctx, const char *dir, bool recurse,
16                 char **infofile);
17
18 /* This is safer: just looks for ccan/ strings in info */
19 char **get_safe_ccan_deps(const void *ctx, const char *dir,
20                           bool recurse, char **infofile);
21
22 /* This also needs to compile the info file. */
23 char **get_libs(const void *ctx, const char *dir,
24                 unsigned int *num, char **infofile);
25
26 /* From tools.c */
27 char *talloc_basename(const void *ctx, const char *dir);
28 char *talloc_dirname(const void *ctx, const char *dir);
29 char *talloc_getcwd(const void *ctx);
30 char *run_command(const void *ctx, const char *fmt, ...);
31 char *temp_file(const void *ctx, const char *extension);
32
33 /* From compile.c.
34  *
35  * These all compile into a temporary dir, and return the filename.
36  * On failure they return NULL, and errmsg is set to compiler output.
37  */
38 /* Compile multiple object files into a single. */
39 char *link_objects(const void *ctx, const char *objs, char **errmsg);
40 /* Compile a single C file to an object file.  Returns errmsg if fails. */
41 char *compile_object(const void *ctx, const char *cfile, const char *ccandir,
42                      char **errmsg);
43 /* Compile and link single C file, with object files, libs, etc. */
44 char *compile_and_link(const void *ctx, const char *cfile, const char *ccandir,
45                        const char *objs, const char *extra_cflags,
46                        const char *libs, char **errmsg);
47 #endif /* CCAN_TOOLS_H */