You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
This is because ccache doesn't cache when the input comes from stdin. We can fix this by either
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
The text was updated successfully, but these errors were encountered: