Skip to content

Commit

Permalink
Fix README.md with updated GDB command
Browse files Browse the repository at this point in the history
The -auxbase-strip command has been removed from compiler proper's, since rebase against master GCC.
  • Loading branch information
philberty committed Dec 1, 2020
1 parent 5296354 commit 3f49161
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 3f49161

Please sign in to comment.