* Make note of symlinks.

It took me awhile before figuring out I should use hardlinks instead of symlinks. This proposal suggests adding a note in the hope it'll save someone else a bit of time. 

See also this issue: https://github.com/mozilla/sccache/issues/993 where someone else also spent way too much time on this issue.
This commit is contained in:
Xander 2021-10-26 11:31:04 +02:00 коммит произвёл GitHub
Родитель 15b4c76579
Коммит 06303be19d
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -240,3 +240,7 @@ Known Caveats
* Incrementally compiled crates cannot be cached. By default, in the debug profile Cargo will use incremental compilation for workspace members and path dependencies. [You can disable incremental compilation.](https://doc.rust-lang.org/cargo/reference/profiles.html#incremental)
[More details on Rust caveats](/docs/Rust.md)
### Symbolic links
* Symbolic links to sccache won't work. Use hardlinks: `ln sccache /usr/local/bin/cc`