Firas Khana
Firas Khana
May I ask why is this an enhancement?
Doesn't the kernel also require `musl-obstack`? Or is that another dependency on `libelf`?
Okay, good luck! Please keep us updated.
So were you able to replace `libelf` from `elfutils` and `musl-obstack` by using `elftoolchain` alone?
Interesting, so we lost some dependencies, but gained two more. Thanks for the update!
> I also realized nothing depends on argp-standalone, according to Alpine Linux package database. I am halfway done with a 2nd CMLFS build with elftoolchain... and came across this package....
I think oasis [uses elftoolchain](https://github.com/oasislinux/oasis/blob/master/pkg/elftoolchain) as well.
> Also, perhaps its time for me to re-evaluate my decision to replace elfutils with elftoolchain. What benefit does `elftoolchain` provide over `elfutils`?
> Because discussions is not enabled for this repo, I place it here, as it's not an issue. I have [enabled discussions](https://github.com/firasuke/mussel/discussions) for this repo, feel free to use it.
Here is what I am using: ```Nim ... import hashlib/misc/xxhash proc verify*(file: string, checksum: string): bool = checksum == $count[XXHASH3_128](readFile(file)) ... ``` Where file is a `.tar.gz` tarball (I'll be...