File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -10,22 +10,22 @@ if [ "$TARGETARCH" = "$BUILDARCH" ]; then
1010 # Native build
1111 rustup target list --installed > /tmp/TARGET
1212 echo " gcc" > /tmp/LINKER
13- apt-get install -y gcc libgcc-s1 cmake pkg-config
13+ apt-get install -y gcc libgcc-s1 make
1414
1515 LIBDIR=" /lib/$( gcc -print-multiarch) "
1616
1717elif [ " $TARGETARCH " = " arm64" ]; then
1818 echo " aarch64-unknown-linux-gnu" > /tmp/TARGET
1919 echo " aarch64-linux-gnu-gcc" > /tmp/LINKER
2020
21- apt-get install -y gcc-aarch64-linux-gnu libgcc-s1-arm64-cross pkg-config
21+ apt-get install -y gcc-aarch64-linux-gnu libgcc-s1-arm64-cross
2222
2323 LIBDIR=" /usr/aarch64-linux-gnu/lib"
2424elif [ " $TARGETARCH " = " arm" ]; then
2525 echo " armv7-unknown-linux-gnueabihf" > /tmp/TARGET
2626 echo " arm-linux-gnueabihf-gcc" > /tmp/LINKER
2727
28- apt-get install -y gcc-arm-linux-gnueabihf libgcc-s1-armhf-cross cmake libclang1 clang pkg-config
28+ apt-get install -y gcc-arm-linux-gnueabihf libgcc-s1-armhf-cross make
2929
3030 cargo install --force --locked bindgen-cli
3131
You can’t perform that action at this time.
0 commit comments