Commit 39f64bed authored by Russ Cox's avatar Russ Cox

godefs: avoid gcc 4'isms in command line.

Fixes #97.

R=r
https://golang.org/cl/155054
parent dee5ad5c
......@@ -163,11 +163,11 @@ main(int argc, char **argv)
n = 0;
av[n++] = "gcc";
av[n++] = "-c";
av[n++] = "-fdollars-in-identifiers";
av[n++] = "-S"; // write assembly
av[n++] = "-gstabs"; // include stabs info
av[n++] = "-o-"; // to stdout
av[n++] = "-o"; // to ...
av[n++] = "-"; // ... stdout
av[n++] = "-xc"; // read C
ARGBEGIN{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment