This commit is contained in:
Hiroshi SHIBATA 2024-04-17 19:13:51 +09:00
Родитель cc37c89c2f
Коммит 945a0334c7
1 изменённых файлов: 10 добавлений и 1 удалений

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

@ -96,11 +96,20 @@
5. Build Ruby:
``` shell
make install
make
```
6. [Run tests](testing_ruby.md) to confirm your build succeeded.
7. Install Ruby:
``` shell
make install
```
- If you need to run `make install` with `sudo` and want to avoid document generation with different permissions, you can use
`make SUDO=sudo install`.
### Unexplainable Build Errors
If you are having unexplainable build errors, after saving all your work, try running `git clean -xfd` in the source root to remove all git ignored local files. If you are working from a source directory that's been updated several times, you may have temporary build artifacts from previous releases which can cause build failures.