I cross-compile gettext-0.18.2
for Windows, but running into some problems. The following error message appears during the steps of linking one of the shared libtool
libraries:
/bin/bash ../libtool --tag=CXX ... libtool: link: unsupported hardcode properties libtool: link: See the libtool documentation for more information. libtool: link: Fatal configuration error.
You can see the full build log, including the libtool
command here (the error is at the very bottom of the page).
What can cause this error and what does it mean? I can not find any information about this error in the documentation, despite the expression in the error message.
It should also be noted: the thing that really makes it strange is that the assembly was done without errors in Ubuntu 12.10 (Quantal) ... but it does not work on Ubuntu 12.04, the current version of LTS.
Optional: I made the difference between libtool
line between the line that was successful and the build failed. The diff looks something like this:

Thus, it is obvious that the C ++ compiler is omitted from the command. Could this cause the error above?
source share