diff options
author | Philip Herron <philip.herron@embecosm.com> | 2020-12-04 16:29:24 +0000 |
---|---|---|
committer | Philip Herron <herron.philip@googlemail.com> | 2020-12-07 10:13:16 +0000 |
commit | 3fa79a6dc58bb532fc4d7bf0f2e6dd29f9ed0018 (patch) | |
tree | 79454ec6d6779e442e6c7e21f879b960a2806e75 | |
parent | c5a1da3944a87dfa82e573d6d89a2898ed71a844 (diff) | |
download | gcc-3fa79a6dc58bb532fc4d7bf0f2e6dd29f9ed0018.zip gcc-3fa79a6dc58bb532fc4d7bf0f2e6dd29f9ed0018.tar.gz gcc-3fa79a6dc58bb532fc4d7bf0f2e6dd29f9ed0018.tar.bz2 |
Update GDB command to remove bad test.s source
-rw-r--r-- | README.md | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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: |