You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The problem is that the snowball tool is being compiled with riscv64-unknown-linux-gnu-gcc which is my cross-compiler, but the tool is run at build time, so it should be built with the host compiler. There should be separate HOST and TARGET variables which can be set on the Makefile with which the correct compiler will be used ($(HOST)-cc and so on).
The text was updated successfully, but these errors were encountered:
When trying to cross-compile snowball, I hit the following issue:
The problem is that the
snowball
tool is being compiled withriscv64-unknown-linux-gnu-gcc
which is my cross-compiler, but the tool is run at build time, so it should be built with the host compiler. There should be separateHOST
andTARGET
variables which can be set on the Makefile with which the correct compiler will be used ($(HOST)-cc
and so on).The text was updated successfully, but these errors were encountered: