-
Notifications
You must be signed in to change notification settings - Fork 151
Open
Labels
bugSomething isn't workingSomething isn't workingbuild systemRelates to build system internals like configure.pyRelates to build system internals like configure.py
Description
This is because ccache doesn't cache when the input comes from stdin. We can fix this by either
- calling gcc proper; or
- piping cpp output to an intermediary .i file and then using the path of that file for cc1
instead of piping cpp into cc1 into as. We do this because we want to use modern cpp. To solve (1) maybe we can replace cpp in the gcc2.8.1 directory with a symlink to the modern cpp?
I prefer (1) because not invoking bash for every cc task will save build time.
Blocks #1151
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't workingbuild systemRelates to build system internals like configure.pyRelates to build system internals like configure.py