toolchain/wrapper: add option to print one argument per line
authorYann E. MORIN <yann.morin.1998@free.fr>
Fri, 20 Sep 2013 22:00:30 +0000 (00:00 +0200)
committerPeter Korsgaard <jacmet@sunsite.dk>
Sun, 22 Sep 2013 09:47:35 +0000 (11:47 +0200)
In case there are many arguments passed to the tools, the command line
can get very long, and difficult to parse visually.

For example, the Linux kernel passes a lot of arguments to gcc (at least
45, which gives 53 with our hard-coded args). Looking at such a command
line is daunting.

So, add the possibility to print each argument on its own line.

Also, enclose all args between single quotes, so the command line
can be safely copy-pasted without special chars (spaces, $) being
inrerpreted by the shell.

Add blurb about toolchain-wrapper to documentation at the same
time.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Cc: Thomas De Schampheleire <patrickdepinguin@gmail.com>
Acked-by: Luca Ceresoli <luca@lucaceresoli.net>
Tested-by: Luca Ceresoli <luca@lucaceresoli.net>
Acked-by: Samuel Martin <s.martin49@gmail.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
docs/manual/customize-toolchain.txt
toolchain/toolchain-external/ext-toolchain-wrapper.c

index 811a6dc7f97a637998220c2bf1cc65c0a5808ef4..82ecc28431485bb0715e9d85e856b7e46f940d0f 100644 (file)
@@ -17,6 +17,17 @@ generate it.
 It also requires to set the Buildroot settings according to the toolchain ones
 (see xref:external-toolchain-backend[]).
 
+When using an external toolchain, Buildroot generates a wrapper program, that
+passes the appropriate options (according to the configuration) to the
+external toolchain programs. In case you need to debug this wrapper, you can
+set the environment variable BR_DEBUG_WRAPPER to either one of:
+
+* +0+, empty or not set: no debug
+
+* +1+: trace all arguments on a single line
+
+* +2+: trace one argument per line
+
 Using the internal Buildroot toolchain backend
 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
 
index 565e36bfd14b938ea6065eb5276c9793dad2c394..dfdfcffbf5679a8ebf8e28281f1c5680fab4b7b9 100644 (file)
@@ -74,7 +74,8 @@ int main(int argc, char **argv)
        char *relbasedir, *absbasedir;
        char *progpath = argv[0];
        char *basename;
-       int ret, i, count = 0;
+       char *env_debug;
+       int ret, i, count = 0, debug;
 
        /* Calculate the relative paths */
        basename = strrchr(progpath, '/');
@@ -157,13 +158,21 @@ int main(int argc, char **argv)
        /* finish with NULL termination */
        *cur = NULL;
 
-       if (getenv("BR_DEBUG_WRAPPER")) {
-               fprintf(stderr, "Executing");
-
-               for (i = 0; args[i]; i++)
-                       fprintf(stderr, " %s", args[i]);
-
-               fprintf(stderr, "\n");
+       /* Debug the wrapper to see actual arguments passed to
+        * the compiler:
+        * unset, empty, or 0: do not trace
+        * set to 1          : trace all arguments on a single line
+        * set to 2          : trace one argument per line
+        */
+       if ((env_debug = getenv("BR_DEBUG_WRAPPER"))) {
+               debug = atoi(env_debug);
+               if (debug > 0) {
+                       fprintf(stderr, "Toolchain wrapper executing:");
+                       for (i = 0; args[i]; i++)
+                               fprintf(stderr, "%s'%s'",
+                                       (debug == 2)?"\n    ":" ", args[i]);
+                       fprintf(stderr, "\n");
+               }
        }
 
        if (execv(path, args))