From 1034b81227a5245eec71f30c4459aa3412b935e7 Mon Sep 17 00:00:00 2001 From: Robert Pengelly Date: Mon, 24 Mar 2025 23:54:04 +0000 Subject: [PATCH] Implemented OS specific implementations for func_shell for more flexability --- include/xmake/xmake.h | 3 --- lib.c | 26 -------------------------- read.c | 13 +++---------- variable.c | 7 ++----- xmake.c | 28 +++++++++++++++------------- 5 files changed, 20 insertions(+), 57 deletions(-) diff --git a/include/xmake/xmake.h b/include/xmake/xmake.h index 1c3db3f..78c67be 100644 --- a/include/xmake/xmake.h +++ b/include/xmake/xmake.h @@ -20,9 +20,6 @@ struct xmake_state { char *path; int quiet, no_print; - - int dry_run; - int ignore_errors; }; diff --git a/lib.c b/lib.c index c6d1bde..32e53d9 100644 --- a/lib.c +++ b/lib.c @@ -58,24 +58,6 @@ static int set_quiet (const char *arg) { } -static int set_ignore_errors (const char *arg) { - - (void) arg; - - state->ignore_errors = 1; - return 0; - -} - -static int set_dry_run (const char *arg) { - - (void) arg; - - state->dry_run = 1; - return 0; - -} - static int set_no_print (const char *arg) { (void) arg; @@ -197,14 +179,6 @@ static struct option opts[] = { { "--file=", &add_makefile }, { "-f:", &add_makefile }, - { "--ignore-errors", &set_ignore_errors }, - { "-i", &set_ignore_errors }, - - { "--dry_run", &set_dry_run }, - { "-n", &set_dry_run }, - - - { 0, &non_option } }; diff --git a/read.c b/read.c index f4556e8..a041b32 100644 --- a/read.c +++ b/read.c @@ -837,12 +837,7 @@ int read_makefile (const char *filename) { char *new_value; int ret; - if (strcmp (filename, "-") == 0) { - - filename = ""; - lbuf.f = stdin; - - } else if (!(lbuf.f = fopen (filename, "r"))) { + if (!(lbuf.f = fopen (filename, "r"))) { return 1; } @@ -872,11 +867,9 @@ int read_makefile (const char *filename) { } ret = read_lbuf (&lbuf, 1); - free (lbuf.start); - if (lbuf.f != stdin) { - fclose (lbuf.f); - } + free (lbuf.start); + fclose (lbuf.f); return ret; diff --git a/variable.c b/variable.c index e7ee37c..5d5df8c 100644 --- a/variable.c +++ b/variable.c @@ -796,11 +796,8 @@ void parse_var_line (const char *filename, unsigned long line_no, char *line, en } else if (opt == VAR_SHELL) { - char *temp = xstrdup (new_value); - free (new_value); - - new_value = variable_expand_line (filename, line_no, func_shell (filename, line_no, temp)); - free (temp); + fprintf (stderr, "+++internal error: != not supported yet. Stop.\n"); + exit (EXIT_FAILURE); } diff --git a/xmake.c b/xmake.c index bd0243c..08bd2a9 100644 --- a/xmake.c +++ b/xmake.c @@ -36,12 +36,9 @@ static int doing_inference_rule_commands = 0; static int rule_run_command (const char *filename, unsigned long line_no, const char *name, char *p, char *q) { + int is_quiet = state->quiet, is_ignoring_errors = 0; char *new_cmds, *s; - int is_ignoring_errors = state->ignore_errors; - int is_quiet = state->quiet; - int should_execute = !state->dry_run; - *q = '\0'; new_cmds = xstrdup (p); @@ -50,7 +47,7 @@ static int rule_run_command (const char *filename, unsigned long line_no, const new_cmds = variable_expand_line ("", 1, new_cmds); s = new_cmds; - while (isspace ((int) *s) || *s == '-' || *s == '@' || *s == '+') { + while (isspace ((int) *s) || *s == '-' || *s == '@') { if (*s == '@') { is_quiet = 1; @@ -60,10 +57,6 @@ static int rule_run_command (const char *filename, unsigned long line_no, const is_ignoring_errors = 1; } - if (*s == '+') { - should_execute = 1; - } - s++; } @@ -72,7 +65,7 @@ static int rule_run_command (const char *filename, unsigned long line_no, const printf ("%s\n", new_cmds); } - if (should_execute) { + /*if (!dry_run) */{ int error = system (s); @@ -498,12 +491,15 @@ int main (int argc, char **argv) { variable_add (xstrdup ("OS"), xstrdup (os_name), VAR_ORIGIN_FILE); variable_add (xstrdup ("MAKE"), xstrdup (argv[0]), VAR_ORIGIN_FILE); +<<<<<<< HEAD #if defined (_WIN32) || defined (__WIN32__) variable_add (xstrdup ("SHELL"), xstrdup ("sh.exe"), VAR_ORIGIN_FILE); #else variable_add (xstrdup ("SHELL"), xstrdup ("/bin/sh"), VAR_ORIGIN_FILE); #endif +======= +>>>>>>> parent of 8f81312 (More support) state = xmalloc (sizeof (*state)); parse_args (argv, argc); @@ -566,15 +562,21 @@ int main (int argc, char **argv) { { - char *path, *cwd = get_current_directory (); + char *cwd, *path; + size_t len; - path = xmalloc (strlen ("CURDIR") + 4 + strlen (cwd) + 1); + cwd = get_current_directory (); + len = strlen ("CURDIR") + 4 + strlen (cwd); + + path = xmalloc (len + 1); sprintf (path, "CURDIR ?= %s", cwd); parse_var_line ("", 1, path, VAR_ORIGIN_FILE); free (path); - path = xmalloc (strlen (".CURDIR") + 4 + strlen (cwd) + 1); + len = strlen (".CURDIR") + 4 + strlen (cwd); + + path = xmalloc (len + 1); sprintf (path, ".CURDIR ?= %s", cwd); parse_var_line ("", 1, path, VAR_ORIGIN_FILE); -- 2.34.1