Skip to content

Commit

Permalink
Bail out on compiler option -fstack-usage
Browse files Browse the repository at this point in the history
It creates a .su file which ccache currently doesn't handle.
  • Loading branch information
jrosdahl committed Jun 4, 2016
1 parent 58d67cb commit 5af36c1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
3 changes: 3 additions & 0 deletions NEWS.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ Bug fixes

- Fixed build problem on QNX, which lacks ``SA_RESTART''.

- Bail out on compiler option `-fstack-usage` since it creates a `.su` file
which ccache currently doesn't handle.


ccache 3.2.5
------------
Expand Down
1 change: 1 addition & 0 deletions compopt.c
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ static const struct compopt compopts[] = {
{"-fno-working-directory", AFFECTS_CPP},
{"-fplugin=libcc1plugin", TOO_HARD}, /* interaction with GDB */
{"-frepo", TOO_HARD},
{"-fstack-usage", TOO_HARD},
{"-fworking-directory", AFFECTS_CPP},
{"-idirafter", AFFECTS_CPP | TAKES_ARG | TAKES_PATH},
{"-iframework", AFFECTS_CPP | TAKES_ARG | TAKES_CONCAT_ARG | TAKES_PATH},
Expand Down

0 comments on commit 5af36c1

Please sign in to comment.