The unpac monorepo manager self-hosting as a monorepo using unpac
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

add a note on how to update liburing

+23
+23
HACKING.md
··· 1 + # Maintainer notes 2 + 3 + ## liburing updates 4 + 5 + `vendor/liburing/` contains the upstream version of liburing. Updating it 6 + is normally done using `git subtree`. 7 + 8 + To do an update, first fetch the remote references from the liburing repo: 9 + 10 + ``` 11 + git remote add liburing https://github.com/axboe/liburing.git 12 + git fetch 13 + ``` 14 + 15 + Then run a subtree pull, and substitute `2.3` with the right version: 16 + 17 + ``` 18 + git subtree pull --prefix vendor/liburing https://github.com/axboe/liburing.git liburing-2.3 --squash 19 + ``` 20 + 21 + Then modify the build rules over at `lib/uring/dune` to pick up the 22 + right version of the shared library that's built. 23 +