diff options
author | Philip Herron <philip.herron@embecosm.com> | 2020-12-01 12:15:53 +0000 |
---|---|---|
committer | Philip Herron <herron.philip@googlemail.com> | 2020-12-01 17:50:50 +0000 |
commit | 3f491614f6e4e2dea93b534c063c142e8de55bb3 (patch) | |
tree | fb5ece6f6a3ffcea6017ce4735996ad212073a15 | |
parent | 52963544519e2dc1f6648d9837def75207d20e37 (diff) | |
download | gcc-3f491614f6e4e2dea93b534c063c142e8de55bb3.zip gcc-3f491614f6e4e2dea93b534c063c142e8de55bb3.tar.gz gcc-3f491614f6e4e2dea93b534c063c142e8de55bb3.tar.bz2 |
Fix README.md with updated GDB command
The -auxbase-strip command has been removed from compiler proper's, since rebase against master GCC.
-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 test1.rs -frust-dump-parse -dumpbase test.rs -mtune=generic -march=x86-64 -auxbase-strip 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 -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 ``` Invoking the compiler driver we need to: |