Troubleshooting

If Buck stops working, then there are several things that you can try to do to fix it.

Make sure you are using the Oracle JDK

Buck has only been tested with the Oracle JDK. If you are using an alternative, such as OpenJDK, then things are not guaranteed to work.

Rebuild Buck

In Buck's short history, its autoupdate logic has had several bugs. If you think that Buck failed to autoupdate correctly (or failed to rebuild correctly after an autoupdate, which is likely if you killed Buck in the middle of an autoupdate), then your best bet is to rebuild it yourself:
cd <directory-where-you-checked-out-Buck>
git checkout master
git pull --rebase
ant clean jar

Run `buck clean`

Ideally, this solution will never work. Seriously. If Buck is working correctly, then it should know which files have been modified and which files need to be rebuilt.

That said, Buck is not perfect, so it is possible that you have found a defect. In this case, give buck clean a shot and file a bug if you have found a reproducible bug.

Make sure you do not have a .nobuckcheck file

If you have been working on Buck itself, you had to create a .nobuckcheck file to disable Buck's autoupdating capability (assuming you are working on a project that uses .buckversion). Once you are done modifying Buck, you should delete the .nobuckcheck file so that Buck autoupdates again.

If you forget to do this, it is inevitable that someone will update your project such that it requires a newer version of Buck, and your local build will inexplicably stop working because your are using an outdated version of Buck. The alternative is to periodically git pull --rebase to update your checkout of Buck manually, but that is error-prone.

Delete all generated files in your project.

Buck is designed so that all generated files are written to the buck-out directory, which makes buck clean trivial to implement. However, you may use additional tools (such as an IDE) that generate files in other parts of the tree. Such files may inadvertently get included via glob() rules, which would interfere with Buck.

For example, if you are using Git, then you can run:

git clean -xfdn
to get a list of files in your project that are not under version control. The -n switch is for "dry run," which means that Git will not delete any files when you run git clean. If you want to use Git to remove the generated files while preserving some non-versioned files (such as .buckconfig.local), then use it with the -e switch:
git clean -xfd -e .buckconfig.local
Note that -e can be specified multiple times.
::...
免责声明:
当前网页内容, 由 大妈 ZoomQuiet 使用工具: ScrapBook :: Firefox Extension 人工从互联网中收集并分享;
内容版权归原作者所有;
本人对内容的有效性/合法性不承担任何强制性责任.
若有不妥, 欢迎评注提醒:

或是邮件反馈可也:
askdama[AT]googlegroups.com


订阅 substack 体验古早写作:


点击注册~> 获得 100$ 体验券: DigitalOcean Referral Badge

关注公众号, 持续获得相关各种嗯哼:
zoomquiet


自怼圈/年度番新

DU22.4
关于 ~ DebugUself with DAMA ;-)
粤ICP备18025058号-1
公安备案号: 44049002000656 ...::