From 3f491614f6e4e2dea93b534c063c142e8de55bb3 Mon Sep 17 00:00:00 2001 From: Philip Herron Date: Tue, 1 Dec 2020 12:15:53 +0000 Subject: [PATCH] Fix README.md with updated GDB command The -auxbase-strip command has been removed from compiler proper's, since rebase against master GCC. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 058f3dc9883e0..bcc1c0e479311 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 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: