Update GDB command to remove bad test.s source

This commit is contained in:
Philip Herron 2020-12-04 16:29:24 +00:00 committed by Philip Herron
parent c5a1da3944
commit 3fa79a6dc5
1 changed files with 1 additions and 1 deletions

View File

@ -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: