aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorzhanghe9702 <zhanghe9702@163.com>2024-03-16 12:25:28 +0800
committerCohenArthur <arthur.cohen@embecosm.com>2024-03-21 14:59:57 +0000
commitf568f3b3e292892c2804c4596151ae11b5ef8c97 (patch)
tree0b4554b67d3b73a1181773a8e818f618d2ed8743
parentaa395781afdcf06cac36dec414e90c741ec5a00b (diff)
downloadgcc-f568f3b3e292892c2804c4596151ae11b5ef8c97.zip
gcc-f568f3b3e292892c2804c4596151ae11b5ef8c97.tar.gz
gcc-f568f3b3e292892c2804c4596151ae11b5ef8c97.tar.bz2
fixed README.md , dump ast using correct option
ChangeLog: * README.md: remove error dump option. Signed-off-by: Zhang He <zhanghe9702@163.com>
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index bc977c2..31df8df 100644
--- a/README.md
+++ b/README.md
@@ -80,7 +80,7 @@ $ make
Running the compiler itself without make install we can simply invoke the compiler proper:
```bash
-$ ./gcc/crab1 test.rs -frust-debug -frust-dump-parse -Warray-bounds -dumpbase test.rs -mtune=generic -march=x86-64 -O0 -version -fdump-tree-gimple -o test.s -L/lib/x86_64-linux-gnu -L/lib/../lib64 -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib64 -frust-incomplete-and-experimental-compiler-do-not-use
+$ ./gcc/crab1 test.rs -frust-debug -frust-dump-ast-pretty -Warray-bounds -dumpbase test.rs -mtune=generic -march=x86-64 -O0 -version -fdump-tree-gimple -o test.s -L/lib/x86_64-linux-gnu -L/lib/../lib64 -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib64 -frust-incomplete-and-experimental-compiler-do-not-use
```
To invoke the compiler driver (gccrs) we need to: