ZakKemble / avr-gcc-build

https://blog.zakkemble.net/avr-gcc-builds/
51 stars 10 forks source link

Use proper make install for AVR-LibC #10

Closed sprintersb closed 2 months ago

sprintersb commented 2 months ago

The build script does cumbersome commands like

cp -r "$PREFIX_LIBC"/* "$PREFIX_GCC_LINUX"

in order to "install" AVR-LibC. The proper way to install it in a location other then --prefix is:

make install prefix="${PREFIX_GCC_LINUX}"

etc.

ZakKemble commented 2 months ago

Sorted 👍