Skip to content

Commit 3f49161

Browse files
committed
Fix README.md with updated GDB command
The -auxbase-strip command has been removed from compiler proper's, since rebase against master GCC.
1 parent 5296354 commit 3f49161

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ $ make
3434
Running the compiler itself without make install we can simply imvoke the compiler proper:
3535

3636
```
37-
$ 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
37+
$ 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
3838
```
3939

4040
Invoking the compiler driver we need to:

0 commit comments

Comments
 (0)