while porting vpp project into buildroot packaging system a new/unusual/irregular host name being discovered:
checking host system type... x86_64-mu-linux-gnu
while in buildroot when x86_64 is selected, the default toolchain
x86_64-linux
is generated and symlinked into buildroot private toolchain named one
x86_64-buildroot-linux-uclibc
which is completely normal practice for cross-compilation builds.
x86_64-mu-linux-gnu is also appeared not to be a prefix for the compiler tools-set, instead, configure is looking for
x86_64-mu-linux-gcc, x86_64-mu-linux-gcc.br_real, x86_64-mu-linux-ar, etc
the question is:
what is the best practice to fix this "magic" naming (especially to get rid of central "-mu" suffix) into the regular one used inside buildroot toolchain?
would be really appreciated if something alternative to creating a set of symlinks would be proposed. (preferably fixing inside configure scripting system)