| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- #include "tools.h"
- #include <ccan/talloc/talloc.h>
- #include <stdlib.h>
- /* Compile multiple object files into a single. Returns errmsg if fails. */
- char *link_objects(const void *ctx, const char *objs, char **errmsg)
- {
- char *file = temp_file(ctx, ".o");
- *errmsg = run_command(ctx, "ld -r -o %s %s", file, objs);
- if (*errmsg) {
- talloc_free(file);
- return NULL;
- }
- return file;
- }
- /* Compile a single C file to an object file. Returns errmsg if fails. */
- char *compile_object(const void *ctx, const char *cfile, char **errmsg)
- {
- char *file = temp_file(ctx, ".o");
- *errmsg = run_command(ctx, "cc " CFLAGS " -c -o %s %s", file, cfile);
- if (*errmsg) {
- talloc_free(file);
- return NULL;
- }
- return file;
- }
- /* Compile and link single C file, with object files.
- * Returns name of result, or NULL (and fills in errmsg). */
- char *compile_and_link(const void *ctx, const char *cfile, const char *objs,
- const char *extra_cflags, const char *libs,
- char **errmsg)
- {
- char *file = temp_file(ctx, "");
- *errmsg = run_command(ctx, "cc " CFLAGS " %s -o %s %s %s %s",
- extra_cflags, file, cfile, objs, libs);
- if (*errmsg) {
- talloc_free(file);
- return NULL;
- }
- return file;
- }
|