Closed sprintersb closed 4 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:
--prefix
make install prefix="${PREFIX_GCC_LINUX}"
etc.
Sorted 👍
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.