book icon indicating copy to clipboard operation
book copied to clipboard

Dependencies for "external LLVM"

Open je-vv opened this issue 2 years ago • 2 comments

Same as https://github.com/aya-rs/bpf-linker/issues/29, the book is missing to document the need for libpolly-15-dev, and apparently also the need for zlib1g-dev in the case of ubuntu 22.04.1. See Development Environment section.

je-vv avatar Feb 08 '23 00:02 je-vv

it works for me.

wget https://apt.llvm.org/llvm.sh && \
    chmod u+x llvm.sh && \
    sudo ./llvm.sh 15 && \
    sudo apt install libpolly-15-dev libz-dev

gwgrisk avatar Mar 28 '23 09:03 gwgrisk