aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilip Herron <philip.herron@embecosm.com>2020-12-04 16:29:24 +0000
committerPhilip Herron <herron.philip@googlemail.com>2020-12-07 10:13:16 +0000
commit3fa79a6dc58bb532fc4d7bf0f2e6dd29f9ed0018 (patch)
tree79454ec6d6779e442e6c7e21f879b960a2806e75
parentc5a1da3944a87dfa82e573d6d89a2898ed71a844 (diff)
downloadgcc-3fa79a6dc58bb532fc4d7bf0f2e6dd29f9ed0018.zip
gcc-3fa79a6dc58bb532fc4d7bf0f2e6dd29f9ed0018.tar.gz
gcc-3fa79a6dc58bb532fc4d7bf0f2e6dd29f9ed0018.tar.bz2
Update GDB command to remove bad test.s source
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index 0c70af8..a1fa41c 100644
--- a/README.md
+++ b/README.md
@@ -34,7 +34,7 @@ $ make
Running the compiler itself without make install we can simply imvoke the compiler proper:
```
-$ gdb --args ./gcc/rust1 test.rs -frust-dump-parse -dumpbase test.rs -mtune=generic -march=x86-64 test.s -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
+$ gdb --args ./gcc/rust1 test.rs -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
```
Invoking the compiler driver we need to: