Commit fbe2864
authored
Add missing install dependencies to INSTALL.md (#5319)
Just tried to build bcc on a today's debian-sid-nocloud-amd64-daily.raw, and it first failed with:
```
[...]
[ 18%] Building CXX object src/cc/CMakeFiles/bcc-shared.dir/common.cc.o
make[2]: *** No rule to make target '/usr/lib/llvm-19/lib/libPolly.a', needed by 'src/cc/libbcc.so.0.34.0'. Stop.
make[1]: *** [CMakeFiles/Makefile2:1043: src/cc/CMakeFiles/bcc-shared.dir/all] Error 2
make: *** [Makefile:146: all] Error 2
```
That got fixed with `apt install libpolly-19-dev`, but the build failed with
```
[ 92%] Built target debuginfo_test_lib
[ 93%] Generating archive.zip
/bin/sh: 1: zip: not found
make[2]: *** [tests/cc/CMakeFiles/zip_archive.dir/build.make:75: tests/cc/archive.zip] Error 127
make[1]: *** [CMakeFiles/Makefile2:2166: tests/cc/CMakeFiles/zip_archive.dir/all] Error 2
make: *** [Makefile:146: all] Error 2
```
That got fixed with `apt install zip`.1 parent d7667cf commit fbe2864
1 file changed
+2
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
349 | 349 | | |
350 | 350 | | |
351 | 351 | | |
352 | | - | |
| 352 | + | |
| 353 | + | |
353 | 354 | | |
354 | 355 | | |
355 | 356 | | |
| |||
0 commit comments