diff options
author | zhanghe9702 <zhanghe9702@163.com> | 2024-03-16 12:25:28 +0800 |
---|---|---|
committer | CohenArthur <arthur.cohen@embecosm.com> | 2024-03-21 14:59:57 +0000 |
commit | f568f3b3e292892c2804c4596151ae11b5ef8c97 (patch) | |
tree | 0b4554b67d3b73a1181773a8e818f618d2ed8743 | |
parent | aa395781afdcf06cac36dec414e90c741ec5a00b (diff) | |
download | gcc-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.md | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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: |